mirror of https://github.com/stella-emu/stella.git
Merge branch 'refactor/cart' of https://github.com/stella-emu/stella into refactor/cart
This commit is contained in:
commit
7d0c82825e
|
@ -68,7 +68,7 @@ class CartridgeF0 : public CartridgeEnhanced
|
|||
#endif
|
||||
|
||||
private:
|
||||
bool checkSwitchBank(uInt16 address, uInt8 value = 0);
|
||||
bool checkSwitchBank(uInt16 address, uInt8 value = 0) override;
|
||||
|
||||
uInt16 romHotspot() const override { return 0x1FF0; }
|
||||
|
||||
|
|
|
@ -67,7 +67,7 @@ class CartridgeF4 : public CartridgeEnhanced
|
|||
#endif
|
||||
|
||||
private:
|
||||
bool checkSwitchBank(uInt16 address, uInt8 value = 0);
|
||||
bool checkSwitchBank(uInt16 address, uInt8 value = 0) override;
|
||||
|
||||
uInt16 romHotspot() const override { return 0x1FF4; }
|
||||
|
||||
|
|
|
@ -6,6 +6,7 @@ MODULE_OBJS := \
|
|||
src/emucore/Booster.o \
|
||||
src/emucore/Cart.o \
|
||||
src/emucore/CartDetector.o \
|
||||
src/emucore/CartEnhanced.o \
|
||||
src/emucore/Cart0840.o \
|
||||
src/emucore/Cart2K.o \
|
||||
src/emucore/Cart3E.o \
|
||||
|
|
Loading…
Reference in New Issue