diff options
author | Marvin Borner | 2020-07-22 16:32:17 +0200 |
---|---|---|
committer | Marvin Borner | 2020-07-22 16:32:17 +0200 |
commit | 881a837adb930a0a3316ab57da95d46c1943f3f1 (patch) | |
tree | 455555e7423c350d3a18ede671a4772d0d6f895e | |
parent | 80542fc9d916cf2b89f8d6782c82bc6f0ad67649 (diff) |
Bumped up resolution
-rw-r--r-- | src/entry.asm | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/src/entry.asm b/src/entry.asm index 855c50f..286f267 100644 --- a/src/entry.asm +++ b/src/entry.asm @@ -7,9 +7,10 @@ %define LOCATION 0x7c00 ; Bootloader location ; General configurations -%define VIDEO_WIDTH 1024 -%define VIDEO_HEIGHT 768 -%define VIDEO_BPP 3 +; TODO: Find out why 2560x1600 doesn't work +%define VIDEO_WIDTH 1920 +%define VIDEO_HEIGHT 1200 +%define VIDEO_BPP 4 ; Interrupts %define VIDEO_INT 0x10 ; Video BIOS Interrupt |