29 #include "Banks/Bank.h"
30 #include "c64/c64env.h"
31 #include "sidendian.h"
32 #include "VIC_II/mos656x.h"
49 void interrupt(
bool state)
51 m_env.interruptIRQ (state);
54 void setBA(
bool state)
64 void poke(uint_least16_t address, uint8_t value)
71 if (address == 0xD020)
75 if (value == 5 || value == 13) msg =
"OK";
76 else if (value == 2 || value == 10) msg =
"KO";
79 std::cout << std::endl << msg << std::endl;
83 write(endian_16lo8(address), value);
86 uint8_t
peek(uint_least16_t address)
88 return read(endian_16lo8(address));