mirror of
https://github.com/gbdev/rgbds.git
synced 2025-11-20 18:22:07 +00:00
11 lines
233 B
NASM
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
|