7 lines
150 B
Text
7 lines
150 B
Text
.text
|
|
.globl multiply
|
|
.type multiply,@function
|
|
multiply:
|
|
movl 4(%esp), %eax
|
|
mull 8(%esp)
|
|
ret
|