ack/mach/xenix3/libsys/pause.s

12 lines
152 B
ArmAsm
Raw Normal View History

1987-10-06 16:39:14 +00:00
.sect .text; .sect .rom; .sect .data; .sect .bss
.define _pause
.sect .text
_pause:
mov ax,29
call syscal
jae 1f
mov (_errno),ax
mov ax,-1
1:
ret