Update boot.asm

This commit is contained in:
heckeralt 2024-10-02 14:20:39 -04:00
parent 343eef670d
commit e042eb5128
1 changed files with 7 additions and 1 deletions

View File

@ -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