diff options
author | Jacques Comeaux <jacquesrcomeaux@protonmail.com> | 2024-06-04 19:37:29 -0500 |
---|---|---|
committer | Jacques Comeaux <jacquesrcomeaux@protonmail.com> | 2024-06-04 19:37:29 -0500 |
commit | 8be9a0ac6bd25a1c8524bd88d910046c5d78095f (patch) | |
tree | 7d892a1b86e8071502cd208ac415d8d6a23f049a /hexedit/main.s | |
parent | f2f186c3594a922e51abf25b24052c61f833a2bf (diff) |
Add stage 1 editor and update README
Diffstat (limited to 'hexedit/main.s')
-rw-r--r-- | hexedit/main.s | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/hexedit/main.s b/hexedit/main.s new file mode 100644 index 0000000..0b49339 --- /dev/null +++ b/hexedit/main.s @@ -0,0 +1,13 @@ +.syntax unified +.cpu cortex-m0plus +.thumb + +.type main, %function +.global main + +main: + bl start_xosc + bl setup_clocks + bl setup_gpio + bl setup_uart + b SETUP |