Files
rgbds/test/asm/disable-warnings.asm
2025-09-25 13:30:30 -04:00

11 lines
233 B
NASM

MACRO test
assert warn, 0, "-Wassert is on by default"
warn "-Wuser is on by default"
ENDM
test ; no warnings because of -w
OPT -Weverything
test ; still no warnings because of -w
OPT Werror=everything
test ; now errors can occur