From e042eb51283d5ee7ff47acc80468ab6df372364b Mon Sep 17 00:00:00 2001 From: heckeralt Date: Wed, 2 Oct 2024 14:20:39 -0400 Subject: [PATCH] Update boot.asm --- boot.asm | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/boot.asm b/boot.asm index d231396..d91ed79 100644 --- a/boot.asm +++ b/boot.asm @@ -9,7 +9,13 @@ start: ; Print welcome message mov si, welcome_message call print_string - + + ; cpu info + mov eax, 0x1 + cpuid + test edx, 1<<25 + jz .noSSE +;SSE is available command_loop: ; Print prompt mov si, prompt_message