asm: prefix every linux specific with linux/

This commit is contained in:
Ciro Santilli 六四事件 法轮功
2019-05-05 00:00:00 +00:00
parent abb67c14b8
commit 0c9afcf9b6
19 changed files with 23 additions and 12 deletions

View File

@@ -0,0 +1 @@
../build

View File

@@ -0,0 +1,22 @@
/* aarch64 freestanding Linux hello world
* https://github.com/cirosantilli/linux-kernel-module-cheat#linux-system-calls
*/
.text
.global _start
_start:
asm_main_after_prologue:
/* write */
mov x0, 1 /* stdout */
adr x1, msg /* buffer */
ldr x2, =len /* len */
mov x8, 64 /* syscall number */
svc 0
/* exit */
mov x0, 0 /* exit status */
mov x8, 93 /* syscall number */
svc 0
msg:
.ascii "hello\n"
len = . - msg