Last active
April 1, 2016 03:02
-
-
Save quickgrid/5a8f6209af9bcf180b7e to your computer and use it in GitHub Desktop.
Check 8086 assembly even odd in loop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
;Author:quickgrid | |
;Site: http://quickgrid.blogspot.com | |
;Code: Even odd check using loop in 8086 assembly explained code | |
.model small | |
.stack 100h | |
.data | |
msg1 db ': odd$' | |
msg2 db ': even$' | |
.code | |
main proc | |
mov ax, @data | |
mov ds, ax | |
;when loop called it uses cx as counter | |
mov cx, 9 | |
;loop label | |
looper: | |
;input a number | |
mov ah, 1 | |
int 21h | |
;divide any number in al by bl or 2 here | |
mov bl, 2 | |
div bl | |
cmp ah, 1 | |
je even | |
mov ah, 9 | |
lea dx, msg2 | |
int 21h | |
jmp skip | |
even: | |
mov ah, 9 | |
lea dx, msg1 | |
int 21h | |
skip: | |
;prints a newline | |
mov ah, 2 | |
mov dl, 0dh | |
int 21h | |
mov dl, 0ah | |
int 21h | |
loop looper | |
main endp | |
end main |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment