This commit is contained in:
Adrien Bourmault 2019-03-09 23:01:02 +01:00
parent fba9a3fc77
commit a8ca22f150
2 changed files with 9 additions and 2 deletions

View File

@ -60,4 +60,11 @@ tritemporize:
; ---------------------------------------------------------------------------- ; ; ---------------------------------------------------------------------------- ;
; Returns the CPU Vendor String.pointer in eax ; ; Returns the CPU Vendor String.pointer in eax ;
; ---------------------------------------------------------------------------- ; ; ---------------------------------------------------------------------------- ;
cpu_vendor cpu_vendor:
;; Calling the competent authorities
mov eax, 0
cpuid
ret
.string db " "

View File

@ -152,7 +152,7 @@ _loader64:
call tritemporize ; Let time to see call tritemporize ; Let time to see
extern StartKern extern StartKern
jmp StartKern ;jmp StartKern
;; We must never reach this point ------------------------------------------- ;; ;; We must never reach this point ------------------------------------------- ;;
jmp Die jmp Die