Hello, i have a question of assemble using the video mode, when i run the program why only half of the screen is painted?,the whole screen should be painted, any help would be welcome please.
this is the code:
org 100h
mov ah, 00 ; video
mov al, 03
int 10h
mov ah, 06 ; paint
mov al, 00
mov bh, 14h
mov cx, 0000
mov dx, 184fh
int 10h
mov ah, 02 ;position
mov bh, 00
mov dh, 0dh
mov dl, 22h
int 10h
mov ah, 09 ;print
mov dx, name
int 21h
mov ah, 4ch
int 21h
name: db "Hello$"