diff options
Diffstat (limited to 'cc/cc-test/src/aarch64.S')
-rw-r--r-- | cc/cc-test/src/aarch64.S | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/cc/cc-test/src/aarch64.S b/cc/cc-test/src/aarch64.S new file mode 100644 index 0000000..1d9062d --- /dev/null +++ b/cc/cc-test/src/aarch64.S @@ -0,0 +1,10 @@ +.globl asm +asm: + mov w0, 7 + ret + +.globl _asm +_asm: + mov w0, 7 + ret + |