13 lines
151 B
ArmAsm
13 lines
151 B
ArmAsm
|
.define _pipe
|
||
|
.extern _pipe
|
||
|
_pipe: trap #0
|
||
|
.short 0x2A
|
||
|
bcc 1f
|
||
|
jmp cerror
|
||
|
1:
|
||
|
move.l 4(sp),a0
|
||
|
move.l d0,(a0)+
|
||
|
move.l d1,(a0)
|
||
|
clr.l d0
|
||
|
rts
|