mirror of
https://github.com/autc04/Retro68.git
synced 2024-11-11 12:05:55 +00:00
8 lines
371 B
C
8 lines
371 B
C
#define harddisk_width 32
|
|
#define harddisk_height 11
|
|
static unsigned char harddisk_bits[] = {
|
|
0xfe, 0xff, 0xff, 0x7f, 0x01, 0x00, 0x00, 0x80, 0x01, 0x00, 0x00, 0x80,
|
|
0x01, 0x00, 0x00, 0x80, 0x01, 0x00, 0x00, 0x80, 0x01, 0x00, 0x00, 0x80,
|
|
0x01, 0x00, 0x00, 0x80, 0x11, 0x00, 0x00, 0x80, 0x01, 0x00, 0x00, 0x80,
|
|
0x01, 0x00, 0x00, 0x80, 0xfe, 0xff, 0xff, 0x7f};
|