aboutsummaryrefslogtreecommitdiffstats
path: root/src/bootstrap.s
diff options
context:
space:
mode:
authorClyne Sullivan <clyne@bitgloo.com>2024-10-06 16:01:53 -0400
committerClyne Sullivan <clyne@bitgloo.com>2024-10-06 16:01:53 -0400
commitf4bf5658970543f26f25816b9123ecfd258bdd42 (patch)
tree80eda13e97de4bb0f7a8dc4c6b135b66aa1f1147 /src/bootstrap.s
parentb262bb6b956bc044144d47a5e037d4af98a19a30 (diff)
better startup: all zig, bss and data init'd
Diffstat (limited to 'src/bootstrap.s')
-rw-r--r--src/bootstrap.s13
1 files changed, 0 insertions, 13 deletions
diff --git a/src/bootstrap.s b/src/bootstrap.s
deleted file mode 100644
index 612fac3..0000000
--- a/src/bootstrap.s
+++ /dev/null
@@ -1,13 +0,0 @@
-.cpu cortex-m4
-.thumb
-
-.extern _start
-.extern _tstack
-
-.section .vector_table
-.global init_vector_table
-init_vector_table:
- .word _tstack
- .word _start
- .skip 4 * 14
-