Update boot.asm
This commit is contained in:
parent
343eef670d
commit
e042eb5128
8
boot.asm
8
boot.asm
|
@ -9,7 +9,13 @@ start:
|
||||||
; Print welcome message
|
; Print welcome message
|
||||||
mov si, welcome_message
|
mov si, welcome_message
|
||||||
call print_string
|
call print_string
|
||||||
|
|
||||||
|
; cpu info
|
||||||
|
mov eax, 0x1
|
||||||
|
cpuid
|
||||||
|
test edx, 1<<25
|
||||||
|
jz .noSSE
|
||||||
|
;SSE is available
|
||||||
command_loop:
|
command_loop:
|
||||||
; Print prompt
|
; Print prompt
|
||||||
mov si, prompt_message
|
mov si, prompt_message
|
||||||
|
|
Loading…
Reference in New Issue