boncey / Flickr4Java

Java API For Flickr. Fork of FlickrJ
BSD 2-Clause "Simplified" License
174 stars 155 forks source link

Intel 8086 assembly language #682

Closed HEllooWorlddd closed 1 year ago

HEllooWorlddd commented 1 year ago

Hello, I'm trying to write a code using intel 8086 assembly language the code should, display integers numbers multiple of 5 from 1 to 400 using loop. My code doesn't work and I always get weird output, I'm using EMU8086. can someone please help me with the code

My code:

.model small .code .data main PROC

MOV CX,400H
MOV AX,5H

START:

DIV CX

mov AH,02H
int 21H

loop START