HariboteOS/day22/include/bootpack.h
2021-05-08 22:22:27 +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_