PCem
changeset 160:5bddbc972079
Mach64 now identifies correctly as PCI when used with a PCI system.
| author | TomW |
|---|---|
| date | Sat Sep 20 17:24:23 2014 +0100 |
| parents | 7dbd14c4adac |
| children | b6874c4f3917 |
| files | src/vid_ati_mach64.c |
| diffstat | 1 files changed, 4 insertions(+), 1 deletions(-) [+] |
line diff
1.1 --- a/src/vid_ati_mach64.c Thu Sep 18 21:14:15 2014 +0100 1.2 +++ b/src/vid_ati_mach64.c Sat Sep 20 17:24:23 2014 +0100 1.3 @@ -1861,7 +1861,10 @@ 1.4 break; 1.5 1.6 case 0x72ec: 1.7 - ret = 6 | (3 << 3); /*VLB, 256Kx16 DRAM*/ 1.8 + if (PCI) 1.9 + ret = 7 | (3 << 3); /*PCI, 256Kx16 DRAM*/ 1.10 + else 1.11 + ret = 6 | (3 << 3); /*VLB, 256Kx16 DRAM*/ 1.12 break; 1.13 1.14 default:
