mirror of
https://github.com/hsoft/collapseos.git
synced 2024-11-23 23:48:05 +11:00
zasm: add RST instruction
This commit is contained in:
parent
518df7a05e
commit
4de2ce3ceb
@ -58,13 +58,14 @@
|
|||||||
.equ I_RRA 0x33
|
.equ I_RRA 0x33
|
||||||
.equ I_RRC 0x34
|
.equ I_RRC 0x34
|
||||||
.equ I_RRCA 0x35
|
.equ I_RRCA 0x35
|
||||||
.equ I_SBC 0x36
|
.equ I_RST 0x36
|
||||||
.equ I_SCF 0x37
|
.equ I_SBC 0x37
|
||||||
.equ I_SET 0x38
|
.equ I_SCF 0x38
|
||||||
.equ I_SLA 0x39
|
.equ I_SET 0x39
|
||||||
.equ I_SRL 0x3a
|
.equ I_SLA 0x3a
|
||||||
.equ I_SUB 0x3b
|
.equ I_SRL 0x3b
|
||||||
.equ I_XOR 0x3c
|
.equ I_SUB 0x3c
|
||||||
|
.equ I_XOR 0x3d
|
||||||
|
|
||||||
; *** Variables ***
|
; *** Variables ***
|
||||||
; Args are 3 bytes: argspec, then values of numerical constants (when that's
|
; Args are 3 bytes: argspec, then values of numerical constants (when that's
|
||||||
@ -555,6 +556,26 @@ handleLDrr:
|
|||||||
ld c, 1
|
ld c, 1
|
||||||
ret
|
ret
|
||||||
|
|
||||||
|
handleRST:
|
||||||
|
ld a, (INS_CURARG1+1)
|
||||||
|
; verify that A is either 0x08, 0x10, 0x18, 0x20, 0x28, 0x30 or 0x38.
|
||||||
|
; Good news: they're all multiples of 8.
|
||||||
|
; to verify that we're within range, we to 8-bit rotation. If any of
|
||||||
|
; the first 3 bytes are set (thus not a multiple of 8), the cp 8
|
||||||
|
; later will yield NC because those bits will now be upwards.
|
||||||
|
rrca \ rrca \ rrca
|
||||||
|
cp 8
|
||||||
|
jr nc, .error
|
||||||
|
; good, we have a proper arg. Now let's get those 3 bits in position
|
||||||
|
rlca \ rlca \ rlca
|
||||||
|
or 0b11000111
|
||||||
|
ld (INS_UPCODE), a
|
||||||
|
ld c, 1
|
||||||
|
ret
|
||||||
|
.error:
|
||||||
|
ld c, 0
|
||||||
|
ret
|
||||||
|
|
||||||
; Compute the upcode for argspec row at (DE) and arguments in curArg{1,2} and
|
; Compute the upcode for argspec row at (DE) and arguments in curArg{1,2} and
|
||||||
; writes the resulting upcode to IO.
|
; writes the resulting upcode to IO.
|
||||||
; A is zero, with Z set, on success. A is non-zero, with Z unset, on error.
|
; A is zero, with Z set, on success. A is non-zero, with Z unset, on error.
|
||||||
@ -1045,6 +1066,7 @@ instrNames:
|
|||||||
.db "RRA", 0
|
.db "RRA", 0
|
||||||
.db "RRC", 0
|
.db "RRC", 0
|
||||||
.db "RRCA"
|
.db "RRCA"
|
||||||
|
.db "RST", 0
|
||||||
.db "SBC", 0
|
.db "SBC", 0
|
||||||
.db "SCF", 0
|
.db "SCF", 0
|
||||||
.db "SET", 0
|
.db "SET", 0
|
||||||
@ -1214,6 +1236,7 @@ instrTBlRET:
|
|||||||
.db I_RRA, 0, 0, 0, 0x1f , 0 ; RRA
|
.db I_RRA, 0, 0, 0, 0x1f , 0 ; RRA
|
||||||
.db I_RRC, 0xb, 0,0x40, 0xcb, 0b00001000 ; RRC r
|
.db I_RRC, 0xb, 0,0x40, 0xcb, 0b00001000 ; RRC r
|
||||||
.db I_RRCA,0, 0, 0, 0x0f , 0 ; RRCA
|
.db I_RRCA,0, 0, 0, 0x0f , 0 ; RRCA
|
||||||
|
.db I_RST, 'n', 0, 0x20 \ .dw handleRST ; RST p
|
||||||
.db I_SBC, 'A', 'l', 0, 0x9e , 0 ; SBC A, (HL)
|
.db I_SBC, 'A', 'l', 0, 0x9e , 0 ; SBC A, (HL)
|
||||||
.db I_SBC, 'A', 0xb, 0, 0b10011000 , 0 ; SBC A, r
|
.db I_SBC, 'A', 0xb, 0, 0b10011000 , 0 ; SBC A, r
|
||||||
.db I_SBC,'h',0x3,0x44, 0xed, 0b01000010 ; SBC HL, ss
|
.db I_SBC,'h',0x3,0x44, 0xed, 0b01000010 ; SBC HL, ss
|
||||||
|
Binary file not shown.
Binary file not shown.
@ -1797,6 +1797,14 @@ RRC H
|
|||||||
RRC L
|
RRC L
|
||||||
RRC A
|
RRC A
|
||||||
RRCA
|
RRCA
|
||||||
|
RST 0
|
||||||
|
RST 8
|
||||||
|
RST 16
|
||||||
|
RST 24
|
||||||
|
RST 32
|
||||||
|
RST 40
|
||||||
|
RST 48
|
||||||
|
RST 56
|
||||||
SBC A, (HL)
|
SBC A, (HL)
|
||||||
SBC A, B
|
SBC A, B
|
||||||
SBC A, C
|
SBC A, C
|
||||||
|
Binary file not shown.
@ -84,9 +84,10 @@ def getDbLines(fp, tblname):
|
|||||||
line = fp.readline()
|
line = fp.readline()
|
||||||
while line:
|
while line:
|
||||||
line = cleanupLine(line)
|
line = cleanupLine(line)
|
||||||
if line:
|
if line == '.db 0xff':
|
||||||
if not line.startswith('.db'):
|
|
||||||
break
|
break
|
||||||
|
# skip index labels lines
|
||||||
|
if line.startswith('.db'):
|
||||||
result.append([s.strip() for s in line[4:].split(',')])
|
result.append([s.strip() for s in line[4:].split(',')])
|
||||||
line = fp.readline()
|
line = fp.readline()
|
||||||
return result
|
return result
|
||||||
@ -151,6 +152,8 @@ def main():
|
|||||||
args1 = eargs(args1)
|
args1 = eargs(args1)
|
||||||
if n == 'IM':
|
if n == 'IM':
|
||||||
args1 = [0, 1, 2]
|
args1 = [0, 1, 2]
|
||||||
|
if n == 'RST':
|
||||||
|
args1 = [i*8 for i in range(8)]
|
||||||
if args1:
|
if args1:
|
||||||
for arg1 in args1:
|
for arg1 in args1:
|
||||||
args2 = genargs(a2)
|
args2 = genargs(a2)
|
||||||
|
Loading…
Reference in New Issue
Block a user