Disable screen blinking again

Fixes #26
This commit is contained in:
Leurak 2017-04-29 10:03:30 +02:00
parent fe39986260
commit 6f4b1e16cd

View file

@ -1,7 +1,11 @@
; Set video mode
mov ax, 0x0003
int 10h
; ==============
; Disable screen blinking (which requires EGA)
mov ax, 0x1003
mov bl, 0
int 10h
; Put the stack somewhere safe
mov sp, 0x2000