mirror of
https://gitlab.com/ita1024/waf.git
synced 2024-11-22 18:07:12 +01:00
15 lines
153 B
ArmAsm
15 lines
153 B
ArmAsm
|
|
.text
|
|
.align 2
|
|
|
|
val:
|
|
.long 10
|
|
|
|
# Multiply input value by 10...
|
|
.global mult10
|
|
.type mult10, function
|
|
mult10:
|
|
movl val,%eax
|
|
imul 4(%esp),%eax
|
|
ret
|