Skip to content

Commit e401243

Browse files
author
Ian Seyler
committed
WIP for moving text output to kernel
1 parent ef741b5 commit e401243

File tree

6 files changed

+21
-6013
lines changed

6 files changed

+21
-6013
lines changed

src/monitor.asm

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -9,15 +9,14 @@
99

1010
BITS 64
1111
ORG 0x001E0000
12-
MONITORSIZE equ 8192 ; Pad Monitor to this length
12+
MONITORSIZE equ 6144 ; Pad Monitor to this length
1313

1414
%include 'api/libBareMetal.asm'
1515

1616
start:
1717
cmp byte [firstrun], 1 ; Check if the first run flag is set
1818
jne poll ; If not, jump to poll
19-
call ui_init ; Otherwise run ui_init
20-
mov byte [firstrun], 0 ; And clear the first run flag
19+
mov byte [firstrun], 0 ; Otherwise clear the first run flag
2120

2221
; Move RAM drive image to proper location (if it was provided)
2322
cmp byte [0x410000], 0 ; Check for a non-zero value

0 commit comments

Comments
 (0)