Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions kernel.asm
Original file line number Diff line number Diff line change
Expand Up @@ -2,13 +2,13 @@
; License: GPL version 2 or higher http://www.gnu.org/licenses/gpl.html

bits 32
section .text
section .data
;multiboot spec
align 4
dd 0x1BADB002 ;magic
dd 0x00 ;flags
dd - (0x1BADB002 + 0x00) ;checksum. m+f+c should be zero

section .text
global start
extern kmain ;this is defined in the c file

Expand Down