1
0
mirror of https://github.com/hsoft/collapseos.git synced 2024-07-22 23:00:19 +10:00
collapseos/apps/zasm/const.asm
2019-05-27 11:58:12 -04:00

11 lines
320 B
NASM

; *** Errors ***
; Unknown instruction or directive
.equ ERR_UNKNOWN 0x01
; Bad argument: Doesn't match any constant argspec or, if an expression,
; contains references to undefined symbols.
.equ ERR_BAD_ARG 0x02
; Code is badly formatted (comma without a following arg, unclosed quote, etc.)
.equ ERR_BAD_FMT 0x03