Files
rgbds/test/asm/warning-as-error.asm
2025-09-25 13:30:30 -04:00

15 lines
156 B
NASM

DEF n = -99 >> 1 ; -Wshift
DEF n = 999_999_999_999 ; -Wlarge-constant
MACRO test
WARN "warning or error?"
ENDM
test
OPT Werror
test
OPT Wno-error
test