Files
seer/tests/helloasm2/square_test.s
T

17 lines
240 B
ArmAsm

# file name: square_test.s
.section .data
.section .text
.globl _start
_start:
pushl $12
call square
addl $4, %esp
movl %eax, %ebx
movl $1, %eax
int $0x80