sorry for my posting frequently, but i'm really working hard.
this is my most simple multiboot 2 header:
Code: Select all
MAGIC equ 0xE85250D6 ; 'magic number' , version 1.6
ARCH equ 0
HDRLEN equ 24
CHECKSUM equ -(MAGIC + ARCH + HDRLEN + 8)
align 8
MultiBoot2Header:
dd MAGIC
dd ARCH
dd HDRLEN
dd CHECKSUM
dd 0 ;tag end
dd 8
there is a sample but the CHECKSUM field is not complete. chechsum is bad, what a disaster!
can anyone figure it out for me or do you have a sample?
thank you,
lemonyii