Skip to content

Commit ae494e1

Browse files
committed
framebuffer: Save one byte on setting bit 14
1 parent d01b1c0 commit ae494e1

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

framebuffer.asm

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -107,7 +107,7 @@ get_video_loop:
107107

108108
; Set the mode
109109
mov bx, cx
110-
bts bx, 14
110+
or bh, 0x40
111111
mov ax, 0x4f02
112112
int 0x10
113113

0 commit comments

Comments
 (0)