ack/mach/pdp/libsys/stime.s

17 lines
168 B
ArmAsm
Raw Normal View History

1987-01-07 17:13:41 +00:00
#include "sys.h"
.globl _stime
.globl _errno
_stime:
mov 2(sp),r1
mov (r1)+,r0
mov (r1),r1
sys stime
bec 1f
mov r0,_errno
mov $-1,r0
rts pc
1:
clr r0
rts pc