19class SuperGames final :
public Cartridge {
21 CartridgeTraits traits = {
23 .type = CRT_SUPER_GAMES,
24 .title =
"Super Games",
27 virtual const CartridgeTraits &getCartridgeTraits()
const override {
return traits; }
34 SuperGames(C64 &ref) : Cartridge(ref) { };
43 void _dump(Category category, std::ostream& os)
const override;
52 SuperGames& operator= (
const SuperGames& other) {
54 Cartridge::operator=(other);
60 virtual void clone(
const Cartridge &other)
override { *
this = (
const SuperGames &)other; }
63 void serialize(T& worker)
69 } CARTRIDGE_SERIALIZERS(serialize)
78 void pokeIO2(u16 addr, u8 value)
override;
VirtualC64 project namespace.
Definition CmdQueue.cpp:16