mirror of
https://github.com/phil-opp/blog_os.git
synced 2025-12-16 14:27:49 +00:00
Call the rust_main function from assembly
This commit is contained in:
@@ -1,4 +1,5 @@
|
||||
global long_mode_start
|
||||
extern rust_main
|
||||
|
||||
section .text
|
||||
bits 64
|
||||
@@ -11,6 +12,10 @@ long_mode_start:
|
||||
mov fs, ax
|
||||
mov gs, ax
|
||||
|
||||
; call the rust main
|
||||
extern rust_main
|
||||
call rust_main
|
||||
|
||||
; print `OKAY` to screen
|
||||
mov rax, 0x2f592f412f4b2f4f
|
||||
mov qword [0xb8000], rax
|
||||
|
||||
Reference in New Issue
Block a user