diff options
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 |