Initial revision

This commit is contained in:
ceriel
1987-01-29 22:36:35 +00:00
parent 945d6a0188
commit 153e30bb1c
59 changed files with 690 additions and 0 deletions

14
mach/m68020/libsys/time.s Normal file
View File

@@ -0,0 +1,14 @@
.define _time
.extern _time
.sect .text
.sect .rom
.sect .data
.sect .bss
.sect .text
_time: move.l #0xD,d0
trap #0
tst.l (4,sp)
beq 1f
move.l d0,([4,sp])
1:
rts