summaryrefslogtreecommitdiffstatshomepage
path: root/src/devices/bus/c64/buscard2.cpp
Commit message (Collapse)AuthorAgeFilesLines
* misc mcfg: remove pia6821 clock freq param, hap2023-09-201-1/+1
| | | | mm2: remove copypasted input ports
* mos6530n(ew): rename to mos6530 hap2023-07-251-1/+1
|
* cpu/nec: Fixed build; also, srcclean Vas Crabb2023-03-261-56/+56
|
* c64: BusCard II: Use the new MOS 6532 implementation. [Curt Coder] Curt Coder2023-03-241-67/+92
|
* c64.cpp, c128.cpp: fixed CBM IEC slot address not being set when replacing ↵ Vas Crabb2019-11-151-29/+18
| | | | | | | | | | | | | | | | | | | devices in machine config bus/c64/rex_ep256.cpp: fixed array of EPROM slots not being populated (subdevices don't exist at construction time) cleanup: (nw) * having a macro for a device's expected tag in a header is bad - devices should not make assumptions about their tag or their location in the system hierarchy * device types exist in the global namespace - you must not use overly generic names for them as this is likely to cause collisions * device short names and titles each have their own namespace, but they're also global, and it should be possible to work out vaguely what a device is from its names * POSIX reserves all names ending in "_t" at global scope - we want fewer of these causing potential future issues, not more * if your device is in the global namespace, you should name it in a way that's not asking for name collisions to happen * we have a simple convention for device class names - it doesn't hurt to follow it: - concrete device_t implementations end with "_device" - device_interface implementations end with "_interface" (and often start with "device_") - abstract classes that derive from device_t end with "_device_base" * if you want to give your slot card device classes short, generic names, put them in a namespace for the "bus" * if you really want to use names ending with "_t", put them in a namespace or nest them inside a class
* c64: Added ROM signature for BusCard II. (nw) Mike Naberezny2019-08-121-2/+3
|
* srcclean (nw) Vas Crabb2019-05-261-4/+4
|
* c64: Added skeleton for BusCard II cartridge. [Curt Coder] Curt Coder2019-05-131-0/+215