11 lines
96 B
ArmAsm
11 lines
96 B
ArmAsm
|
.section .data
|
||
|
|
||
|
.section .text
|
||
|
|
||
|
.globl _start
|
||
|
_start:
|
||
|
movl $1, %eax
|
||
|
movl $0, %ebx
|
||
|
|
||
|
int $0x80
|