CMake/Tests/VSMARMASM/foo.asm
Brad King b44714a642 VS: Honor compile options for ASM_MARMASM
The Ninja and Makefile generators honor `target_compile_options` and
friends for ASM_MARMMASM `.asm` sources.  Teach the VS generator to
honor them too for consistency.

Issue: #24289
2023-01-26 12:56:25 -05:00

11 lines
93 B
NASM

AREA |.text|, CODE
EXPORT foo
foo PROC
mov w0, #zero
ret
ENDP
END