mirror of
https://github.com/epasveer/seer.git
synced 2026-08-30 00:50:42 +08:00
23 lines
307 B
ArmAsm
23 lines
307 B
ArmAsm
# file name: isolated_square.s
|
|
|
|
.section .data
|
|
|
|
.section .text
|
|
|
|
.globl square
|
|
|
|
.type square,@function
|
|
|
|
square:
|
|
pushl %ebp
|
|
movl %esp, %ebp
|
|
movl 8(%ebp), %eax
|
|
|
|
imull %eax, %eax
|
|
|
|
end_square:
|
|
movl %ebp, %esp
|
|
popl %ebp
|
|
ret
|
|
|