mirror of
https://github.com/autc04/Retro68.git
synced 2024-11-24 07:31:32 +00:00
8 lines
386 B
C
8 lines
386 B
C
#define harddisk_mask_width 32
|
|
#define harddisk_mask_height 11
|
|
static unsigned char harddisk_mask_bits[] = {
|
|
0xfe, 0xff, 0xff, 0x7f, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
|
|
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
|
|
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
|
|
0xff, 0xff, 0xff, 0xff, 0xfe, 0xff, 0xff, 0x7f};
|