ack/mach/xenix3/libsys/_pause.s

12 lines
154 B
ArmAsm
Raw Normal View History

1990-01-19 17:37:29 +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