mirror of
https://github.com/phil-opp/blog_os.git
synced 2025-12-17 06:47:49 +00:00
Call rust main function
This commit is contained in:
@@ -13,10 +13,14 @@
|
|||||||
; limitations under the License.
|
; limitations under the License.
|
||||||
|
|
||||||
global long_mode_start
|
global long_mode_start
|
||||||
|
extern main
|
||||||
|
|
||||||
section .text
|
section .text
|
||||||
bits 64
|
bits 64
|
||||||
long_mode_start:
|
long_mode_start:
|
||||||
|
|
||||||
|
; call rust main
|
||||||
|
call main
|
||||||
; print `OKAY` to screen
|
; print `OKAY` to screen
|
||||||
mov rax, 0x2f592f412f4b2f4f
|
mov rax, 0x2f592f412f4b2f4f
|
||||||
mov qword [0xb8000], rax
|
mov qword [0xb8000], rax
|
||||||
|
|||||||
Reference in New Issue
Block a user