1 %line 1+1 sqrt.asm 2 3 [section .data] 4 EXIT_SUCCESS equ 0 5 SYS_exit equ 60 6 00000000 0000000000007040 sqrty dq 256.0 7 00000008 0000000000000000 sqrtx dq 0 8 [section .text] 9 [global _start] 10 _start: 11 00000000 F20F510425[00000000] sqrtsd xmm0, qword[sqrty] 12 00000009 F20F2DC0 cvtsd2si eax, xmm0 13 14 finish: 15 0000000D 48C7C03C000000 mov rax, SYS_exit 16 00000014 48C7C700000000 mov rdi, EXIT_SUCCESS 17 0000001B 0F05 syscall 18 19