syntax error correction
This commit is contained in:
parent
beaaa19ada
commit
e69ccee1f7
3 changed files with 6 additions and 6 deletions
|
@ -24,7 +24,7 @@
|
|||
mov b,m
|
||||
inx h
|
||||
mov a,d
|
||||
xor b
|
||||
xri b
|
||||
jm 1f ! jump if index and l.b. have different signs
|
||||
mov a,e
|
||||
sub c
|
||||
|
@ -32,14 +32,14 @@
|
|||
sbb b
|
||||
jmp 2f
|
||||
|
||||
1: xor b ! now a = d again
|
||||
1: xri b ! now a = d again
|
||||
2: cm erange ! trap if index too small
|
||||
|
||||
mov c,m
|
||||
inx h
|
||||
mov b,m
|
||||
mov a,d
|
||||
xor b
|
||||
xri b
|
||||
jm 1f ! jump if index and u.b. have different signs
|
||||
mov a,c
|
||||
sub e
|
||||
|
@ -47,7 +47,7 @@
|
|||
sbb d
|
||||
jmp 2f
|
||||
|
||||
1: xor d ! now a = b
|
||||
1: xri d ! now a = b
|
||||
2: cm erange ! trap if index is too large
|
||||
|
||||
lhld .bcreg
|
||||
|
|
|
@ -10,7 +10,7 @@
|
|||
! Expects on stack: operand
|
||||
! Yields on stack: result
|
||||
|
||||
.rol4 pop h
|
||||
.rol4: pop h
|
||||
shld .retadr
|
||||
mov h,b
|
||||
mov l,c
|
||||
|
|
|
@ -10,7 +10,7 @@
|
|||
! Expects on stack: operand
|
||||
! Yields on stack: result
|
||||
|
||||
.ror4 pop h
|
||||
.ror4: pop h
|
||||
shld .retadr
|
||||
mov h,b
|
||||
mov l,c
|
||||
|
|
Loading…
Reference in a new issue