disabled random startup bank for CartWD

This commit is contained in:
Thomas Jentzsch 2021-11-01 08:07:13 +01:00
parent b7733bd1c1
commit 18db3456f4
1 changed files with 6 additions and 0 deletions

View File

@ -152,6 +152,12 @@ class CartridgeWD : public CartridgeEnhanced
bool poke(uInt16 address, uInt8 value) override;
private:
/**
Checks if startup bank randomization is enabled. For this scheme,
randomization is not supported.
*/
bool randomStartBank() const override { return false; }
bool checkSwitchBank(uInt16, uInt8 = 0) override { return false; }
uInt16 hotspot() const override { return 0x0030; }