assembly - print the 10th characher image on command line with assembler -
the question how make command line show 10th charachter image (not new line feed). i've tried code (using tasm):
.model tiny .code org 100h begin: mov ah,2 mov dl,10 int 21h ret end begin
and here output (just new line feed):
i want display 10th character image in picture:
my os: windows xp 32-bit
processor: intel(r) core(tm) i3 cpu m 350 x86_64
thanks in advance!
use bios function 0ah that.
mov cx,1 mov bx,7 mov ax,0a0ah int 10h
Comments
Post a Comment