Moved NovaForth into a crate with a build script

This commit is contained in:
2024-08-11 21:08:21 -05:00
parent bd54ae1ef0
commit 98c95b55f4
23 changed files with 2209 additions and 19 deletions
+9
View File
@@ -0,0 +1,9 @@
; Magic numbers:
$PUSH: .equ 0
$SWAP: .equ 20
$JMP: .equ 23
$JMPR: .equ 24
$CALL: .equ 25
$RET: .equ 26
$BRZ: .equ 27
$BRNZ: .equ 28