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