mirror of
https://github.com/hsoft/collapseos.git
synced 2024-11-09 03:28:07 +11:00
175e1328e7
* Build emulated zasm statically * Improve comments in zasm.asm * Fix build * Use unsetZ from core
10 lines
203 B
SQL
10 lines
203 B
SQL
RAMSTART .equ 0x8000
|
|
RAMEND .equ 0xffff
|
|
USER_CODE .equ RAMSTART
|
|
|
|
; *** JUMP TABLE ***
|
|
JUMP_STRNCMP .equ 0x02
|
|
JUMP_ADDDE .equ 0x05
|
|
JUMP_UPCASE .equ 0x08
|
|
JUMP_UNSETZ .equ 0x0b
|