Files
low-level-programming/rust_boot.asm
2015-10-26 03:04:21 -07:00

8 lines
86 B
NASM

global start
section .text
bits 32
start:
mov dword [0xb800], 0x2f4b2f4f
hlt