Added MACHINE_CBUS #define, as well as DEVICE_ISA, DEVICE_CBUS, and DEVICE_EISA.

This commit is contained in:
OBattler
2017-10-08 05:43:44 +02:00
parent d72a2cc924
commit cf40a3c8f4
2 changed files with 12 additions and 8 deletions

View File

@@ -38,10 +38,13 @@ enum {
DEVICE_NOT_WORKING = 1, /* does not currently work correctly and will be disabled in a release build*/
DEVICE_AT = 2, /* requires an AT-compatible system */
DEVICE_PS2 = 4, /* requires a PS/1 or PS/2 system */
DEVICE_ISA = 8, /* requires the ISA bus */
DEVICE_CBUS = 0x10, /* requires the C-BUS bus */
DEVICE_MCA = 0x20, /* requires the MCA bus */
DEVICE_VLB = 0x40, /* requires the PCI bus */
DEVICE_PCI = 0x80, /* requires the VLB bus */
DEVICE_AGP = 0x100 /* requires the AGP bus */
DEVICE_EISA = 0x40, /* requires the EISA bus */
DEVICE_VLB = 0x80, /* requires the PCI bus */
DEVICE_PCI = 0x100, /* requires the VLB bus */
DEVICE_AGP = 0x200 /* requires the AGP bus */
};