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):

enter image description here

i want display 10th character image in picture: enter image description here

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

Popular posts from this blog

angularjs - ADAL JS Angular- WebAPI add a new role claim to the token -

php - CakePHP HttpSockets send array of paramms -

node.js - Using Node without global install -