Groups | Search | Server Info | Keyboard shortcuts | Login | Register [http] [https] [nntp] [nntps]
Groups > alt.os.development > #18607
| From | wolfgang kern <nowhere@never.at> |
|---|---|
| Newsgroups | alt.os.development |
| Subject | need help with C |
| Date | 2024-01-16 11:51 +0100 |
| Organization | A noiseless patient Spider |
| Message-ID | <uo5n3e$1d5e3$1@dont-email.me> (permalink) |
I started conversion of the whole UEFI-docs from C to RBIL-styled this line was easy: #define EFI_SYSTEM_TABLE_SIGNATURE 0x5453595320494249 efi_systab: [rdx+] 000 dq 54535953_20494249 ;signature:"IBI SYST" 008 dq ;one of the below ??? but how would they look like in a dump view? my first idea is: #define EFI_2_100_SYSTEM_TABLE_REVISION ((2<<16) | (100)) 008 dq 00000000_00020064 ;is this correct ??? #define EFI_2_90_SYSTEM_TABLE_REVISION ((2<<16) | (90)) #define EFI_2_80_SYSTEM_TABLE_REVISION ((2<<16) | (80)) #define EFI_2_70_SYSTEM_TABLE_REVISION ((2<<16) | (70)) #define EFI_2_60_SYSTEM_TABLE_REVISION ((2<<16) | (60)) #define EFI_2_50_SYSTEM_TABLE_REVISION ((2<<16) | (50)) #define EFI_2_40_SYSTEM_TABLE_REVISION ((2<<16) | (40)) #define EFI_2_31_SYSTEM_TABLE_REVISION ((2<<16) | (31)) #define EFI_2_30_SYSTEM_TABLE_REVISION ((2<<16) | (30)) #define EFI_2_20_SYSTEM_TABLE_REVISION ((2<<16) | (20)) #define EFI_2_10_SYSTEM_TABLE_REVISION ((2<<16) | (10)) #define EFI_2_00_SYSTEM_TABLE_REVISION ((2<<16) | (00)) #define EFI_1_10_SYSTEM_TABLE_REVISION ((1<<16) | (10)) #define EFI_1_02_SYSTEM_TABLE_REVISION ((1<<16) | (02)) #define EFI_SPECIFICATION_VERSION EFI_SYSTEM_TABLE_REVISION #define EFI_SYSTEM_TABLE_REVISION EFI_2_100_SYSTEM_TABLE_REVISION TIA __ wolfgang
Back to alt.os.development | Previous | Next | Find similar | Unroll thread
need help with C wolfgang kern <nowhere@never.at> - 2024-01-16 11:51 +0100
csiph-web