본문 바로가기

Programming Language/Assembly

[Assembly] 어셈블리 Test3

실행환경

- cpu : 인텔계열(64bit)

- 컴파일러 : nasm

- 리눅스 : ubuntu 16.04 LTS


설치방법

sudo apt-get install nasm


컴파일

- nasm -f elf64 파일명.asm -o 파일명.o  --> 목적파일을 만든다.

- ld 파일명.o -o 파일명  --> 실행파일을 만든다.


문제 : 변수 x가 1보다 크고 5보다 작을 때 true 출력


test3.asm

section .data


first db 'num : '


len1 equ $ -first


true db 'true!'


len2 equ $ -true


false db 'false!'


len3 equ $ -false


newLine db 0x0a


section .bss


num1 resb 1


temp resb 1


section .text


global _start




%macro write 2


mov eax,4


mov ebx,1


mov ecx,%1


mov edx,%2


int 0x80


%endmacro




%macro read 2


mov eax,3


mov ebx,1


mov ecx,%1


mov edx,%2


int 0x80


%endmacro




_start:


write first,len1


read num1,1


read temp,1




mov al,[num1]


sub al,'0'




cmp al,1


jg _maxFunc


write false,len3


write newLine,1


jmp _exit




_maxFunc:


cmp al,5


jl _max1Func


write false,len3


write newLine,1


jmp _exit




_max1Func:


write true,len2


write newLine,1


jmp _exit




_exit:


mov eax,1


int 0x80