libsidplayfp 1.0.3
|
#include <Bank.h>
Public Member Functions | |
virtual void | poke (uint_least16_t address, uint8_t value)=0 |
virtual uint8_t | peek (uint_least16_t address)=0 |
Base interface for memory and I/O banks.
virtual uint8_t Bank::peek | ( | uint_least16_t | address | ) | [pure virtual] |
Bank read. You probably should override this method, except if the Bank is only used in write context.
address | value to read from |
Implemented in ColorRAMBank, ExtraSidBank, IOBank, SidBank, SystemRAMBank, romBank< N >, ZeroRAMBank, c64cia1, c64cia2, c64vic, sidemu, romBank< 0x2000 >, and romBank< 0x1000 >.
virtual void Bank::poke | ( | uint_least16_t | address, |
uint8_t | value | ||
) | [pure virtual] |
Bank write.
Override this method if you expect write operations on your bank. Leave unimplemented if it's logically/operationally impossible for writes to ever arrive to bank.
address | address to write to |
value | value to write |
Implemented in ColorRAMBank, ExtraSidBank, IOBank, SidBank, SystemRAMBank, romBank< N >, ZeroRAMBank, c64cia1, c64cia2, c64vic, sidemu, romBank< 0x2000 >, and romBank< 0x1000 >.