I want to change text and background color without clearing the screen. Ive used this code but it always clear the screen.
mov ah, 2 ; use function 2 - go to x,y
mov bh, 0 ; display page 0
mov dh, 0 ; y coordinate to move cursor to
mov dl, 0 ; x coordinate to move cursor to
int 10h ; go!
mov ah, 0ah
mov cx, 1000h
mov al, 20h
mov bl, 17h ;color
int 10h
jmp cmd