amiplus: add initial support for NES 73331

Closes #1230
pull/1231/head
Dawid Wróbel 2024-04-03 11:42:34 +02:00
rodzic efcc41d107
commit f47ff76eef
1 zmienionych plików z 1 dodań i 0 usunięć

Wyświetl plik

@ -33,6 +33,7 @@ namespace
di.addDetection(MANUFACTURER_APA, 0x02, 0x02);
di.addDetection(MANUFACTURER_DEV, 0x37, 0x02);
di.addDetection(MANUFACTURER_DEV, 0x02, 0x00);
di.addDetection(MANUFACTURER_NES, 0x02, 0x03);
di.setConstructor([](MeterInfo& mi, DriverInfo& di){ return shared_ptr<Meter>(new Driver(mi, di)); });
});