collapseos/tools/emul/zasm_user.asm

15 lines
328 B
NASM
Raw Normal View History

2019-04-17 07:00:19 +10:00
; *** JUMP TABLE ***
JUMP_STRNCMP .equ 0x02
JUMP_ADDDE .equ 0x05
2019-05-10 11:21:08 +10:00
JUMP_ADDHL .equ 0x08
JUMP_UPCASE .equ 0x0b
JUMP_UNSETZ .equ 0x0e
JUMP_INTODE .equ 0x11
JUMP_FINDCHAR .equ 0x14
2019-05-10 12:14:11 +10:00
JUMP_PARSEHEXPAIR .equ 0x17
2019-05-10 04:09:40 +10:00
2019-05-10 11:21:08 +10:00
.equ USER_CODE 0x4000
.equ RAMSTART 0x6000
.org USER_CODE
2019-05-10 04:09:40 +10:00
#include "main.asm"