Add x1 C example / improve extract.py to extract all sections after .text

This commit is contained in:
Takumi Sueda
2021-03-04 06:15:54 +09:00
parent beb13f7943
commit a1ff34dbca
5 changed files with 36 additions and 3 deletions

7
x1/c/start.S Normal file
View File

@@ -0,0 +1,7 @@
.align 2
.global _start
_start:
push {r4, lr}
bl main
pop {r4, pc}