Files
low-level-programming/multiboot_header.asm
greg 35238cff2d Bare-metal gamarjoba munde
just clears the screen
2015-09-17 00:16:55 -07:00

10 lines
128 B
NASM

%define MAGIC 0x1BADB002
%define FLAGS 0x0
%define CHECKSUM -(MAGIC + FLAGS)
section .multiboot
dd MAGIC
dd FLAGS
dd CHECKSUM