summaryrefslogtreecommitdiff
path: root/include/gba
diff options
context:
space:
mode:
authorDizzyEggg <jajkodizzy@wp.pl>2017-09-21 10:50:15 +0200
committerDizzyEggg <jajkodizzy@wp.pl>2017-09-21 10:50:15 +0200
commit9ee9a20152694f456841eb890b986d42f3c50e26 (patch)
tree2998678c0f3db391b080318633bc506248542ecb /include/gba
parent3919b7130b2a8709562b012099947923a16af02d (diff)
parented9e0e20547e2c96833cddea67c6b423ef7af7ef (diff)
fix merge conflicts
Diffstat (limited to 'include/gba')
-rw-r--r--include/gba/multiboot.h26
1 files changed, 13 insertions, 13 deletions
diff --git a/include/gba/multiboot.h b/include/gba/multiboot.h
index e88b43a19..14b6594b2 100644
--- a/include/gba/multiboot.h
+++ b/include/gba/multiboot.h
@@ -8,19 +8,19 @@
struct MultiBootParam
{
- u32 system_work[5];
- u8 handshake_data;
- u8 padding;
- u16 handshake_timeout;
- u8 probe_count;
- u8 client_data[MULTIBOOT_NCHILD];
- u8 palette_data;
- u8 response_bit;
- u8 client_bit;
- u8 reserved1;
- u8 *boot_srcp;
- u8 *boot_endp;
- u8 *masterp;
+ u32 system_work[5]; // 00
+ u8 handshake_data; // 14
+ u8 padding; // 15
+ u16 handshake_timeout; // 16
+ u8 probe_count; // 18
+ u8 client_data[MULTIBOOT_NCHILD]; // 19
+ u8 palette_data; // 1c
+ u8 response_bit; // 1d
+ u8 client_bit; // 1e
+ u8 reserved1; // 1f
+ const u8 *boot_srcp; // 20
+ const u8 *boot_endp; // 24
+ const u8 *masterp;
u8 *reserved2[MULTIBOOT_NCHILD];
u32 system_work2[4];
u8 sendflag;