Merge branch 'refactor/cart' of https://github.com/stella-emu/stella into refactor/cart

This commit is contained in:
thrust26 2020-04-04 18:29:37 +02:00
commit 7d0c82825e
3 changed files with 3 additions and 2 deletions

View File

@ -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; }

View File

@ -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; }

View File

@ -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 \