BIOS
RE:BIOS
To clear the screen using BIOS need to call INT 10h like this:
mov ah,0x06
mov al,0x00
mov cx,0x00
mov dh,0x18
mov dl,0x4F
int 0x10
You must be using an 80x25 screen mode for this to work. The computer boots up in this mode so this should work for you. (I hope that I got it right)
~ TripleFault !)
mov ah,0x06
mov al,0x00
mov cx,0x00
mov dh,0x18
mov dl,0x4F
int 0x10
You must be using an 80x25 screen mode for this to work. The computer boots up in this mode so this should work for you. (I hope that I got it right)
~ TripleFault !)