diff options
Diffstat (limited to 'Tests/VSMARMASM/foo.asm')
-rw-r--r-- | Tests/VSMARMASM/foo.asm | 10 |
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 |