libsidplayfp
2.0.2
|
#include <SidBank.h>
Public Member Functions | |
void | reset () |
uint8_t | peek (uint_least16_t addr) override |
void | poke (uint_least16_t addr, uint8_t data) override |
void | setSID (c64sid *s) |
SID
Located at $D400-$D7FF, mirrored each 32 bytes
|
inlineoverridevirtual |
Bank read. You probably should override this method, except if the Bank is only used in write context.
address | value to read from |
Implements libsidplayfp::Bank.
|
inlineoverridevirtual |
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 |
Implements libsidplayfp::Bank.
|
inline |
Set SID emulation.
s | the emulation, nullptr to remove current sid |