RSDP: Difference between revisions

36 bytes added ,  29 days ago
m
Bot: Replace deprecated source tag with syntaxhighlight
[unchecked revision][unchecked revision]
m (Undo revision 28276 by Tyfoc (talk))
m (Bot: Replace deprecated source tag with syntaxhighlight)
 
Line 5:
In ACPI Version 1.0 it has this structure:
 
<sourcesyntaxhighlight lang="c">
struct RSDP_t {
char Signature[8];
Line 13:
uint32_t RsdtAddress;
} __attribute__ ((packed));
</syntaxhighlight>
</source>
 
since Version 2.0 it has been extended:
 
<sourcesyntaxhighlight lang="c">
struct XSDP_t {
char Signature[8];
Line 30:
uint8_t reserved[3];
} __attribute__ ((packed));
</syntaxhighlight>
</source>
==Detecting the RSDP==