Пример #1
0
/* ----- write byte to I/O range of VICE ----- */
static void tfe_store(WORD io_address, BYTE byte)
{
    if (tfe_as_rr_net) {
        /* rr control register is handled by rr cartidge */
        if (io_address < 0x02) {
            return;
        }
        io_address ^= 0x08;
    }

    cs8900_store(io_address, byte);
    return;
}
Пример #2
0
/* ----- write byte to I/O range of VICE ----- */
void cs8900io_store(WORD io_address, BYTE byte)
{
    if (!cs8900io_cannot_use) {
        cs8900_store(io_address, byte);
    }
}