新增一个led测试代码

This commit is contained in:
ASUS660 2025-12-11 20:16:09 +08:00
parent cdd09da18d
commit ab8f1aee3e
2 changed files with 13 additions and 3 deletions

View File

@ -1,6 +1,9 @@
.global _start
_start:
ldr r0, =0x40000000

View File

@ -0,0 +1,7 @@
led:led.s
arm-linux-gnueabihf-gcc -c -v led.s
arm-linux-gnueabihf-gcc -o led led.o
clean:
rm -f *.o