Home |
RTTarget-32 Programming Manual System Management BIOS (SMBIOS) Advanced Programmable Interrupt Controller (APIC) Function RTMPTableBus Function RTMPTablePCIInterrupt |
Function RTMPTableBusRTMPTableBus adds an I/O Bus record to the custom MP Floating Pointer Structure previously created with RTMPTableCreate. UINT RTMPTableBus(BYTE BusID, const char * Name); ParametersBusIDUnique ID value which will subsequently be used to identify this bus. NamePointer to the name of this bus. This parameter must be "PCI" for all PCI busses and "ISA" for the ISA bus. return valueZero if the table's size is exhausted or a value greater zero on success. This function must be called for each PCI bus and for the ISA bus in the system. The order and distribution of IDs is important. All present PCI buses must be listed first with the ID values (bus numbers) used by the PCI BIOS. Then, a single ISA bus must be added with an ID value higher than all PCI bus IDs.
|