Important: The information in this document is obsolete and should not be used for new development.
Slot Parameter RAM Record
The Macintosh Operating System reserves eight bytes of parameter RAM for each slot. Six of these bytes are available for card designers to store information. TheSPRAMRecord
data type defines the organization of these bytes of data in parameter RAM. This data structure includes the Apple-definedBoardID
and six bytes of
vendor-specific information.
TYPE SPRAMRecord = {slot parameter RAM record} PACKED RECORD boardID: Integer; {Apple-defined board ID} vendorUse1: SignedByte; {available for vendor use} vendorUse2: SignedByte; {available for vendor use} vendorUse3: SignedByte; {available for vendor use} vendorUse4: SignedByte; {available for vendor use} vendorUse5: SignedByte; {available for vendor use} vendorUse6: SignedByte; {available for vendor use} END;
Field Description
boardID
- The card identification number assigned by Apple Computer, Inc.
vendorUse
- General-purpose fields that may be used by the card designer.