Added entry points for ANSI C

This commit is contained in:
ceriel
1990-01-22 13:09:29 +00:00
parent 37c64c6e36
commit 1fdf2d2e19
30 changed files with 411 additions and 14 deletions

View File

@@ -0,0 +1,15 @@
.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 4(sp),a0
move.l d0,(a0)
1:
rts