diff options
| author | JideshMSFT <[email protected]> | 2022-07-29 12:51:43 -0700 |
|---|---|---|
| committer | GitHub <[email protected]> | 2022-07-29 12:51:43 -0700 |
| commit | b6fb0b8e09a20f2d6a546535a24efc7a3a4516b7 (patch) | |
| tree | 62cd21f3c9d9195926c730c3ad329407275f151a | |
| parent | 35cfbfbd585a44c0b247f1bca355cdf45672094e (diff) | |
Delete tx_simulator_startup.s
| -rw-r--r-- | ports_module/cortex_m4/gnu/example_build/tx_simulator_startup.s | 73 |
1 files changed, 0 insertions, 73 deletions
diff --git a/ports_module/cortex_m4/gnu/example_build/tx_simulator_startup.s b/ports_module/cortex_m4/gnu/example_build/tx_simulator_startup.s deleted file mode 100644 index 73692924..00000000 --- a/ports_module/cortex_m4/gnu/example_build/tx_simulator_startup.s +++ /dev/null @@ -1,73 +0,0 @@ - - .syntax unified - .section .vectors, "ax" - .code 16 - .align 0 - .global _vectors - -_vectors: - .word __stack_end__ - .word reset_handler - .word __tx_NMIHandler - .word __tx_HardfaultHandler - .word MemManage_Handler - .word BusFault_Handler - .word UsageFault_Handler - .word 0 // Reserved - .word 0 // Reserved - .word 0 // Reserved - .word 0 // Reserved - .word __tx_SVCallHandler //_SVC_Handler - used by Threadx scheduler // - .word __tx_DBGHandler - .word 0 // Reserved - .word __tx_PendSVHandler - .word __tx_SysTickHandler // Used by Threadx timer functionality - .word __tx_BadHandler // Populate with user Interrupt handler - .word __tx_BadHandler - .word __tx_BadHandler - .word __tx_BadHandler - .word __tx_BadHandler - .word __tx_BadHandler - .word __tx_BadHandler - .word __tx_BadHandler - .word __tx_BadHandler - .word __tx_BadHandler - .word __tx_BadHandler - .word __tx_BadHandler - .word __tx_BadHandler - .word __tx_BadHandler - .word __tx_BadHandler - .word __tx_BadHandler - .word __tx_BadHandler - .word __tx_BadHandler - .word __tx_BadHandler - .word __tx_BadHandler - .word __tx_BadHandler - .word __tx_BadHandler - .word __tx_BadHandler - .word __tx_BadHandler - .word __tx_BadHandler - .word __tx_BadHandler - .word __tx_BadHandler - .word __tx_BadHandler - .word __tx_BadHandler - .word __tx_BadHandler - .word __tx_BadHandler - .word __tx_BadHandler - .word __tx_BadHandler - .word __tx_BadHandler - .word __tx_BadHandler - - - - .section .init, "ax" - .global reset_handler - .thumb_func -reset_handler: - -// low level hardware config, such as PLL setup goes here - - b _start - - - |
