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
|
_dup2: move.w #0x29,d0
|
||||||
move.l 4(sp),a0
|
move.l 4(sp),a0
|
||||||
move.l 8(sp),d1
|
move.l 8(sp),d1
|
||||||
or.l #0x40,a0
|
add.l #0x40,a0
|
||||||
jmp call
|
jmp call
|
||||||
|
|
|
@ -1,7 +1,7 @@
|
||||||
.define _pipe
|
.define _pipe
|
||||||
.extern _pipe
|
.extern _pipe
|
||||||
_pipe:
|
_pipe:
|
||||||
mov.w #0x2A,d0
|
move.w #0x2A,d0
|
||||||
trap #0
|
trap #0
|
||||||
bcc 1f
|
bcc 1f
|
||||||
jmp cerror
|
jmp cerror
|
||||||
|
|
Loading…
Reference in a new issue