Run Code
|
API
|
Code Wall
|
Users
|
Misc
|
Feedback
|
Login
|
Theme
|
Privacy
|
Patreon
assembly program to incease the entered number by 1
;nasm 2.11.08 section .bss num resb 2 section .text global _start _start: mov eax,3 mov ebx,0 mov ecx,num mov edx,2 int 0x80 mov eax,[num] sub eax,'0' add eax,1 add eax,'0' mov [num],eax mov eax,4 mov ebx,1 mov ecx,num mov edx,2 int 0x80 mov eax,1 mov ebx,0 int 0x80
run
|
edit
|
history
|
help
0
Please
log in
to post a comment.
Hello World
Что нужно знать Java программисту
First Program Group Lab
MPassignment1
lec4c
Evaluate Expression
index1.asm
Group lab 1
AVL-GO-FLAT
Frequency_of_an_element_from_an_array
Please log in to post a comment.