summaryrefslogtreecommitdiffstats
path: root/Tests/VSMARMASM/foo.asm
diff options
context:
space:
mode:
authorIlia K <ki.stfu@gmail.com>2022-10-14 11:24:47 (GMT)
committerBrad King <brad.king@kitware.com>2022-11-09 15:22:46 (GMT)
commit3166547cf6d62217d3142a18e3aae3fc84e49b24 (patch)
tree245e1a41fcb57ed5f4bd6794609b865ef7caa4dd /Tests/VSMARMASM/foo.asm
parentce4babb5669b9fcd8ff3d34c109eeca598144ce4 (diff)
downloadCMake-3166547cf6d62217d3142a18e3aae3fc84e49b24.zip
CMake-3166547cf6d62217d3142a18e3aae3fc84e49b24.tar.gz
CMake-3166547cf6d62217d3142a18e3aae3fc84e49b24.tar.bz2
ASM_MARMASM: Add support for Microsoft ARM assembler language
https://learn.microsoft.com/en-us/cpp/assembler/arm/arm-assembler-reference Fixes: #23999
Diffstat (limited to 'Tests/VSMARMASM/foo.asm')
-rw-r--r--Tests/VSMARMASM/foo.asm10
1 files changed, 10 insertions, 0 deletions
diff --git a/Tests/VSMARMASM/foo.asm b/Tests/VSMARMASM/foo.asm
new file mode 100644
index 0000000..e5b2775
--- /dev/null
+++ b/Tests/VSMARMASM/foo.asm
@@ -0,0 +1,10 @@
+ AREA |.text|, CODE
+
+ EXPORT foo
+
+foo PROC
+ mov w0, #0
+ ret
+ ENDP
+
+ END