Files

12 lines
142 B
C

#ifndef LOADER_H
#define LOADER_H
struct multiboot_header
{
unsigned long magic;
unsigned long flags;
unsigned long checksum;
};
#endif