Good, I have to do a cycle in assembly language from 1 to 10 that shows the numbers, I already have the cycle but I do not know how to make the interruption to show the numbers on the screen, the cycle is as follows:
Assembly
.model small
.stack
.data
.code
PAGE 60,132
TITLE EJLOOP (EXE) ilustración de LOOP
; ----------------------------------------…
ORG 100H
BEGIN PROC NEAR
MOV AX,01 ; iniciación de AX
MOV BX,01 ; BX y
MOV DX,01 ; DX a 01
MOV CX,10 ; iniciar
A20: ; número de iteraciones
LOOP A20 ; decrementar CX
; iterar si es diferente de 0
MOV AX, 4C00H ; salida a DOS
INT 21H
BEGIN ENDP ; fin de procedimiento
.exit
end
But how do I interrupt to show the numbers ???? Thanks!