blob: 5cc464906a137e31fd664c0d1a736549f71228d5 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
.globl _ubox_wait_for
.globl _ubox_wait
.globl ubox_isr_wait_ticks
.globl ubox_isr_wait_tick
_ubox_wait_for::
ld b, l
wait_for_loop:
push bc
call _ubox_wait
pop bc
djnz wait_for_loop
ret
|