diff options
author | Jacques Comeaux <jacquesrcomeaux@protonmail.com> | 2024-05-26 14:21:59 -0500 |
---|---|---|
committer | Jacques Comeaux <jacquesrcomeaux@protonmail.com> | 2024-05-26 14:21:59 -0500 |
commit | 5bbad5026cb810f61c2466d5c4bf3438ba820842 (patch) | |
tree | 1fa99f91c1af046d812485ac52abf7b83eb2acdc /hexedit/main.s | |
parent | 7388c270069c2d1418539bca1d2789a6d468ecc2 (diff) |
Finish hexedit and update README
Diffstat (limited to 'hexedit/main.s')
-rw-r--r-- | hexedit/main.s | 7 |
1 files changed, 3 insertions, 4 deletions
diff --git a/hexedit/main.s b/hexedit/main.s index 5e294d4..f2f6126 100644 --- a/hexedit/main.s +++ b/hexedit/main.s @@ -2,6 +2,8 @@ .cpu cortex-m0plus .thumb +.section .entry, "ax" + .type main, %function .global main @@ -10,7 +12,4 @@ main: bl setup_clocks bl setup_gpio bl setup_uart -1: - bl uart_recv - bl uart_send - b 1b + b hexedit |