hence/hence/lib/main.asm

20 lines
322 B
NASM
Raw Normal View History

2022-09-02 09:33:46 +00:00
; "main function" like definition macro
.requires "$lib/core.asm"
.requires "$lib/std.asm"
2022-09-03 13:14:58 +00:00
.define lib_main_local_jump_main, (CORE_MEM_ST - 3 - 1)
2022-09-02 09:33:46 +00:00
.macro jump_main
2022-09-03 13:14:58 +00:00
.std_jump lib_main_local_jump_main
2022-09-02 09:33:46 +00:00
.endmacro
.macro main
main:
2022-09-03 13:14:58 +00:00
.org lib_main_local_jump_main
2022-09-02 09:33:46 +00:00
ts main
tlr CORE_REG_PC
.org main
.endmacro