Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | |||||
3 | 4 | 5 | 6 | 7 | 8 | 9 |
10 | 11 | 12 | 13 | 14 | 15 | 16 |
17 | 18 | 19 | 20 | 21 | 22 | 23 |
24 | 25 | 26 | 27 | 28 | 29 | 30 |
Tags
- REDIS
- Docker
- C언어
- rfc5508
- 취약점
- edge trigger
- architecture
- NAPT
- cbpf
- wnourefresh
- ncurses
- packet flow
- .net core 7
- packet filter
- mvwin
- 풀이
- wrefresh
- 어셈블리어
- ioctl
- BOF
- vtable
- .nret core 배포
- doupdate
- epoll
- level trigger
- DOCKER-USER
- iptables
- Compiler
- LOB
- epoll_wait
Archives
- Today
- Total
Tuuna Computer Science
[어셈블리어] 10진수 배열을 통해 이진수로 출력하기 본문
|
|
|
%include "asm_io.inc" |
|
segment .data |
msg db "input your number : ", 0 |
format_scanf db "%d", 0 |
|
segment .bss |
input resd 1 |
|
segment .text |
global asm_main |
|
asm_main: |
enter 0,0 |
pusha |
|
push msg |
call printf |
add esp, 4 |
push input |
push format_scanf |
call scanf |
add esp, 4 |
|
push dword [input] |
call bin |
add esp, 4 |
popa |
leave |
ret |
|
;십진수를 바이너리로 보여줌 |
segment .data |
bin_array times 100 dd 0 |
bin_print db "%d ", 0 |
segment .bss |
|
segment .text |
global bin |
|
bin: |
push ebp, |
mov ebp, esp |
sub esp, 12 |
|
push eax |
mov eax, [ebp+8] ;input value |
mov [ebp-4], eax ;이제 사용할 값 |
pop eax |
mov ebx, 2 |
mov dword [ebp-8], 0 ; ecx값 임시로 저장 |
|
while_loop: |
mov ecx, [ebp-8] |
mov eax, 0 |
mov edx, 0 |
mov eax, [ebp-4] |
cdq |
idiv ebx ;idiv를 쓰면 ecx값이 바뀌는 거 같던뎀 |
mov [ebp-4], eax |
mov ecx, [ebp-8] |
mov [bin_array+ecx], edx |
;add ecx, 4 |
;mov [ebp-8], ecx |
cmp eax, 0 ;eax가 0이 될 시 |
je print_bin |
add ecx, 4 |
mov [ebp-8], ecx |
jmp while_loop |
|
print_bin: |
mov [ebp-8], ecx |
push dword [bin_array+ecx] |
push bin_print |
call printf |
add esp, 8 |
mov ecx, [ebp-8] |
sub ecx, 4 |
cmp ecx, 0 |
jl end_loop |
jmp print_bin |
|
end_loop: |
add esp, 12 |
pop ebp |
leave |
ret |
처음에 애를 좀 많이 먹었다. 배열의 크기를 double word로 해야했는데 byte로 선언해서
그리고 파일 이동중에 소멸되서 다시 코드를 작성했다..
계속 코드를 작성하다 보면 효율성이랑 좋아지지 않을까 생각한담
음 실행 화면은
Memory managed language !
'Assembly' 카테고리의 다른 글
[Assembly] C 라이브러리 함수 strlen 구현하기 (0) | 2018.10.26 |
---|---|
[Assembly] C 라이브러리 함수 strcpy 구현하기 (0) | 2018.10.26 |
[어셈블리어] 최소공배수 구하기 (0) | 2018.08.30 |
[어셈블리어] 구구단 출력하기 (0) | 2018.08.30 |
[어셈블리] 파일 다루기 ( 소문자를 대문자로 바꾸기 ) (0) | 2018.08.06 |
Comments