diff options
Diffstat (limited to 'hd.h')
-rw-r--r-- | hd.h | 12 |
1 files changed, 12 insertions, 0 deletions
@@ -0,0 +1,12 @@ +#ifndef HD_H +#define HD_H + +typedef struct hd_data_struct { + struct flag_struct { + unsigned cpuemu:1; /**< use CPU emulation to run BIOS code (i386 only) */ + unsigned nobioscrc:1; /**< internal: don't check VBIOS crc */ + unsigned biosvram:1; /**< internal: map Video BIOS RAM (128k at 0xa0000) */ + } flags; +} hd_data_t; + +#endif /* HD_H */ |