Work around gcc issue: change (0x1fe-0x3a) to (0x1fe - 0x3a), to avoid missinterpretation.
git-svn-id: file:///srv/svn/repos/haiku/haiku/trunk@22742 a95241bf-73f2-0310-859d-f6bbb57e9c96
This commit is contained in:
parent
0e596fcaf9
commit
8161a0aff8
@ -83,11 +83,9 @@ struct atari_boot_block {
|
|||||||
uint16 num_sectors;
|
uint16 num_sectors;
|
||||||
uint32 load_addr;
|
uint32 load_addr;
|
||||||
uint32 fat_buffer;
|
uint32 fat_buffer;
|
||||||
/*(0x003a-0x002e)*/
|
#define ATARI_BB_FILENAME_SZ (0x003a - 0x002e)
|
||||||
#define ATARI_BB_FILENAME_SZ 0xc
|
|
||||||
char filename[ATARI_BB_FILENAME_SZ];
|
char filename[ATARI_BB_FILENAME_SZ];
|
||||||
/*(0x01fe-0x003a)*/
|
#define ATARI_BB_BOOTCODE_SZ (0x01fe - 0x003a)
|
||||||
#define ATARI_BB_BOOTCODE_SZ 0x1c4
|
|
||||||
uint8 bootcode[ATARI_BB_BOOTCODE_SZ];
|
uint8 bootcode[ATARI_BB_BOOTCODE_SZ];
|
||||||
uint16 checksum; /* 0x1234 if bootable */
|
uint16 checksum; /* 0x1234 if bootable */
|
||||||
};
|
};
|
||||||
|
Loading…
Reference in New Issue
Block a user