%include "io64.inc"section .textglobal mainmain: mov rbp, rsp; for correct debugging ;write your code here ;1~100사이 값중 홀수면 1 짝수면 0출력 GET_DEC 1, a mov bl, 1 and [a], bl cmp [a], byte 1 je LABEL_EQUAL PRINT_DEC 1, 0 jmp LABEL_NOT_EQUALLABEL_EQUAL: PRINT_DEC 1, 1 LABEL_NOT_EQUAL: xor rax, rax retsection .bss g resb 10 ; 변수이름 크기 개 a resb 1SASM 프로그램..