RSDT: Difference between revisions

[unchecked revision][unchecked revision]
Content deleted Content added
→‎What's next?: Advertise the lonely SRAT and SLIT tables
m Added missing semicolons
Line 23:
uint32_t CreatorID;
uint32_t CreatorRevision;
};
</source>
=== Header fields ===
Line 53:
struct ACPISDTHeader h;
uint32_t PointerToOtherSDT[(h.Length - sizeof(h)) / 4];
};
</source>
If you instead used the XsdtPointer, then the table is:
Line 60:
struct ACPISDTHeader h;
uint64_t PointerToOtherSDT[(h.Length - sizeof(h)) / 8];
};
</source>