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