Rust kernel

Following  this post:
http://blog.phil-opp.com/rust-os/multiboot-kernel.html#fn2
This commit is contained in:
greg
2015-10-25 23:25:15 -07:00
parent c5fcd73499
commit 90655746ca
10 changed files with 74 additions and 0 deletions

7
rust_boot.asm Normal file
View File

@@ -0,0 +1,7 @@
global start
section .text
bits 32
start:
mov dword [0xb800], 0x2f4b2f4f
hlt