This commit is contained in:
2025-09-23 13:44:14 +03:00
commit a84b8fcfde
91 changed files with 88177 additions and 0 deletions

11
FIRMWARE/wait.S Normal file
View File

@@ -0,0 +1,11 @@
.section .text
.globl wait
wait:
li t0,1
slli t0, t0,17
.L0:
addi t0,t0,-1
bnez t0, .L0
ret