Browse Source

forth: Forth-ify "OR"

pull/95/head
Virgil Dupras 4 years ago
parent
commit
1871f7cdb4
4 changed files with 15 additions and 19 deletions
  1. BIN
      emul/forth/z80c.bin
  2. +1
    -19
      forth/forth.asm
  3. +1
    -0
      forth/z80a.fs
  4. +13
    -0
      forth/z80c.fs

BIN
emul/forth/z80c.bin View File


+ 1
- 19
forth/forth.asm View File

@@ -1505,27 +1505,9 @@ DIVMOD:
jp next


.db "OR"
.fill 5
.dw $-DIVMOD
.db 0
OR:
.dw nativeWord
pop hl
pop de
call chkPS
ld a, e
or l
ld l, a
ld a, d
or h
ld h, a
push hl
jp next

.db "XOR"
.fill 4
.dw $-OR
.dw $-DIVMOD
.db 0
XOR:
.dw nativeWord


+ 1
- 0
forth/z80a.fs View File

@@ -53,6 +53,7 @@
OR A,
;
0xa0 OP1r0 ANDr,
0xb0 OP1r0 ORr,

( qq -- also works for ss )
: OP1qq


+ 13
- 0
forth/z80c.fs View File

@@ -84,6 +84,19 @@ CODE AND
HL PUSHqq,
;CODE

CODE OR
HL POPqq,
DE POPqq,
chkPS,
A E LDrr,
L ORr,
L A LDrr,
A D LDrr,
H ORr,
H A LDrr,
HL PUSHqq,
;CODE

CODE PC!
BC POPqq,
HL POPqq,


Loading…
Cancel
Save