.section .data amount: .double 29.93 result_format: .asciz "Number: $%.2f\n" .section .text .global _start _start: call print_hi call print_hi movsd amount, %xmm0 call tax_calc mov $result_format, %rdi mov $1, %rax call printf mov $27, %rdi call exit