comparison components/bootloader @ 605:07d0dc4431f4

bootloader.s: same MEMIF fix as in int.s plus DPLL BYPASS fix Both MEMIF and DPLL settings are now the same between int.s and bootloader.s assembly code paths. Previously bootloader.s was setting DPLL BYPASS /2 mode, which persisted until _INT_Initialize code with the bootloader body omitted, or was changed to /1 in the hardware init function in the bootloader.lib:start.obj module.
author Mychaela Falconia <falcon@freecalypso.org>
date Mon, 17 Jun 2019 18:40:32 +0000
parents 30203d5aeb74
children 8cf3029429f3
comparison
equal deleted inserted replaced
604:a7ed7d4483b0 605:07d0dc4431f4
14 ASMFLAGS="$ASMFLAGS -dTI_PROFILER=0" 14 ASMFLAGS="$ASMFLAGS -dTI_PROFILER=0"
15 ASMFLAGS="$ASMFLAGS -dTI_NUC_MONITOR=0" 15 ASMFLAGS="$ASMFLAGS -dTI_NUC_MONITOR=0"
16 ASMFLAGS="$ASMFLAGS -dL1_GPRS=$GPRS" 16 ASMFLAGS="$ASMFLAGS -dL1_GPRS=$GPRS"
17 ASMFLAGS="$ASMFLAGS -dOP_WCP=0" 17 ASMFLAGS="$ASMFLAGS -dOP_WCP=0"
18 ASMFLAGS="$ASMFLAGS -dWCP_PROF=0" 18 ASMFLAGS="$ASMFLAGS -dWCP_PROF=0"
19
20 if [ "$RF" = 12 ]
21 then
22 ASMFLAGS="$ASMFLAGS -dVCXO_26MHZ=1"
23 else
24 ASMFLAGS="$ASMFLAGS -dVCXO_26MHZ=0"
25 fi
19 26
20 asm_file $SRCDIR/bootloader.s 27 asm_file $SRCDIR/bootloader.s
21 28
22 ASMFLAGS="-mt -me" 29 ASMFLAGS="-mt -me"
23 ASMFLAGS="$ASMFLAGS -dBOARD=41" 30 ASMFLAGS="$ASMFLAGS -dBOARD=41"