22 #ifndef COLORRAMBANK_H
23 #define COLORRAMBANK_H
32 namespace libsidplayfp
50 memset(ram, 0,
sizeof(ram));
53 void poke(uint_least16_t address, uint8_t value)
override
55 ram[address & 0x3ff] = value & 0xf;
58 uint8_t
peek(uint_least16_t address)
override
60 return ram[address & 0x3ff];
Definition: ColorRAMBank.h:43
uint8_t peek(uint_least16_t address) override
Definition: ColorRAMBank.h:58
void poke(uint_least16_t address, uint8_t value) override
Definition: ColorRAMBank.h:53