collapseos/tools/emul/zasm_user.asm

17 lines
376 B
NASM
Raw Normal View History

2019-04-17 07:00:19 +10:00
; *** JUMP TABLE ***
2019-05-17 03:23:23 +10:00
JUMP_STRNCMP .equ 0x03
JUMP_ADDDE .equ 0x06
JUMP_ADDHL .equ 0x09
JUMP_UPCASE .equ 0x0c
JUMP_UNSETZ .equ 0x0f
JUMP_INTODE .equ 0x12
JUMP_INTOHL .equ 0x15
JUMP_FINDCHAR .equ 0x18
JUMP_PARSEHEXPAIR .equ 0x1b
JUMP_BLKSEL .equ 0x1e
2019-05-10 04:09:40 +10:00
.equ USER_CODE 0x4800
.equ RAMSTART 0x5800
2019-05-10 11:21:08 +10:00
.org USER_CODE
2019-05-10 04:09:40 +10:00
#include "main.asm"