- Get link
- X
- Other Apps
include 'emu8086.inc'
org 100h
.code
Cursoroff ;apaga el cursor
call scan_num ;pide un numero
define_scan_num ;define la funcion
gotoxy 2,5
putc 'A' ;imprime un solo caracter
gotoxy 5,7 ;define en donde se ira a la pantalla
print 'dame un numero'
call scan_num
mov ax,cx
gotoxy 8,7
call print_num
define_print_num
define_print_num_uns
end
ret
- Get link
- X
- Other Apps
Comments
Post a Comment