Created
June 19, 2018 11:36
-
-
Save tuliopaim/586531815b2414dba4656799215e836c to your computer and use it in GitHub Desktop.
Ex3 lab18 SB
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| .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