summaryrefslogtreecommitdiffstats
path: root/Src/osmocombb/src/target/firmware/board/compal/start.ram.S
diff options
context:
space:
mode:
authorTom2011-08-16 15:41:46 +0200
committerTom2011-08-16 15:41:46 +0200
commitf910171deda0933e506cf3ffc216ee8daa418c24 (patch)
treedddee7cdad41fc4f3d8c1de95148d0a2daac1193 /Src/osmocombb/src/target/firmware/board/compal/start.ram.S
parentanother system info 2 description (diff)
downloadimsi-catcher-detection-f910171deda0933e506cf3ffc216ee8daa418c24.tar.gz
imsi-catcher-detection-f910171deda0933e506cf3ffc216ee8daa418c24.tar.xz
imsi-catcher-detection-f910171deda0933e506cf3ffc216ee8daa418c24.zip
corrected spelling mistake and added 2 new papers for gsm specs
Diffstat (limited to 'Src/osmocombb/src/target/firmware/board/compal/start.ram.S')
-rw-r--r--Src/osmocombb/src/target/firmware/board/compal/start.ram.S26
1 files changed, 0 insertions, 26 deletions
diff --git a/Src/osmocombb/src/target/firmware/board/compal/start.ram.S b/Src/osmocombb/src/target/firmware/board/compal/start.ram.S
deleted file mode 100644
index c8f242c..0000000
--- a/Src/osmocombb/src/target/firmware/board/compal/start.ram.S
+++ /dev/null
@@ -1,26 +0,0 @@
-
-.section .text.start
-
-#include "macros.S"
-
-.globl _start
-_start:
- /* clear bss section */
- clear_bss
-
- /* initialize all stacks */
- init_stacks
-
- /* call constructors */
- call_ctors
-
- /* jump to main */
- ldr pc, _jump_main
-
- /* endless loop at end of program */
-_loop:
- b _loop
- b _start
-
-_jump_main:
- .word main