Or's are not allowed on a-registers, add's are.
This commit is contained in:
parent
ec3e755168
commit
b63f304db1
2 changed files with 2 additions and 2 deletions
|
@ -4,5 +4,5 @@
|
|||
_dup2: move.w #0x29,d0
|
||||
move.l 4(sp),a0
|
||||
move.l 8(sp),d1
|
||||
or.l #0x40,a0
|
||||
add.l #0x40,a0
|
||||
jmp call
|
||||
|
|
|
@ -1,7 +1,7 @@
|
|||
.define _pipe
|
||||
.extern _pipe
|
||||
_pipe:
|
||||
mov.w #0x2A,d0
|
||||
move.w #0x2A,d0
|
||||
trap #0
|
||||
bcc 1f
|
||||
jmp cerror
|
||||
|
|
Loading…
Reference in a new issue