Procházet zdrojové kódy

forth: Forth-ify "C,"

pull/95/head
Virgil Dupras před 4 roky
rodič
revize
26871be6f2
3 změnil soubory, kde provedl 8 přidání a 17 odebrání
  1. binární
      emul/forth/z80c.bin
  2. +2
    -16
      forth/forth.asm
  3. +6
    -1
      forth/icore.fs

binární
emul/forth/z80c.bin Zobrazit soubor


+ 2
- 16
forth/forth.asm Zobrazit soubor

@@ -720,24 +720,10 @@ EMIT:
.dw EXIT


.fill 49

.db "C,"
.dw $-EMIT
.db 2
CWR:
.dw nativeWord
pop de
call chkPS
ld hl, (HERE)
ld (hl), e
inc hl
ld (HERE), hl
jp next

.fill 71

.db ","
.dw $-CWR
.dw $-EMIT
.db 1
WR:
.dw nativeWord


+ 6
- 1
forth/icore.fs Zobrazit soubor

@@ -81,6 +81,11 @@
AGAIN
;

: C,
HERE @ _c C!
HERE @ 1 + HERE !
;

: (entry)
HERE @ ( h )
WORD ( h s )
@@ -92,7 +97,7 @@
( write prev value )
HERE @ CURRENT @ _c - ,
( write size )
C,
_c C,
HERE @ CURRENT !
;



Načítá se…
Zrušit
Uložit