Files
low-level-programming/rust_boot.asm

8 lines
86 B
NASM
Raw Normal View History

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