Mach64 now identifies correctly as PCI when used with a PCI system.

This commit is contained in:
TomW 2014-09-20 17:24:23 +01:00
commit f98af7b525

View file

@ -1861,7 +1861,10 @@ uint8_t mach64_ext_inb(uint16_t port, void *p)
break;
case 0x72ec:
ret = 6 | (3 << 3); /*VLB, 256Kx16 DRAM*/
if (PCI)
ret = 7 | (3 << 3); /*PCI, 256Kx16 DRAM*/
else
ret = 6 | (3 << 3); /*VLB, 256Kx16 DRAM*/
break;
default: