mirror of
https://github.com/epasveer/seer.git
synced 2026-08-30 00:50:42 +08:00
17 lines
240 B
ArmAsm
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
|
|
|