coreboot/util/baremetal/include/preboot.h
2003-05-12 19:05:37 +00:00

13 lines
279 B
C

#ifndef __PREBOOT_H
#define __PREBOOT_H
typedef struct pre_boot_param {
char sig[8];
unsigned long int free_ramtop;
unsigned long int save;
unsigned long int stack;
unsigned long int stacksize;
struct lb_memory *lbmem;
} __attribute__ ((packed)) pre_boot_param_t;
#endif