Skip to content

Instantly share code, notes, and snippets.

@tuliopaim
Created June 19, 2018 11:36
Show Gist options
  • Select an option

  • Save tuliopaim/586531815b2414dba4656799215e836c to your computer and use it in GitHub Desktop.

Select an option

Save tuliopaim/586531815b2414dba4656799215e836c to your computer and use it in GitHub Desktop.
Ex3 lab18 SB
.text
.global calc3
calc3:
pushq %rbp
movq %rsp, %rbp
subq $16, %rsp
cvtss2sd %xmm0, %xmm0
cvtss2sd %xmm1, %xmm1
movsd %xmm1, -16(%rbp)
call sin
movsd %xmm0, -8(%rbp)
movsd -16(%rbp), %xmm0
call cos
addsd -8(%rbp), %xmm0
cvtsd2ss %xmm0, %xmm0
leave
ret
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment