HariboteOS/day28/include/bootpack.h
2021-06-01 21:15:52 +08:00

18 lines
261 B
C

#ifndef _BOOTPACK_H_
#define _BOOTPACK_H_
#define ADR_BOOTINFO 0x00000ff0
#define ADR_DISKIMG 0x00100000
struct BootInfo {
char cyls;
char leds;
char vmode;
char reserve;
short scrnx;
short scrny;
unsigned char *vram;
};
#endif // _BOOTPACK_H_