/* * libtilemcore - Graphing calculator emulation library * * Copyright (C) 2009 Benjamin Moody * * This library is free software; you can redistribute it and/or * modify it under the terms of the GNU Lesser General Public License * as published by the Free Software Foundation; either version 2.1 of * the License, or (at your option) any later version. * * This library is distributed in the hope that it will be useful, but * WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU * Lesser General Public License for more details. * * You should have received a copy of the GNU Lesser General Public * License along with this library; if not, see * . */ #ifndef _TILEM_X3_H #define _TILEM_X3_H enum { PORT2, /* port 2 (memory mapping) */ PORT3, /* mask of enabled interrupts */ PORT4, /* mapping mode + timer speed */ ROM_BANK, /* current ROM bank for port 2 mapping */ NUM_HW_REGS }; #define HW_REG_NAMES { "port2", "port3", "port4", "rom_bank" } #define TIMER_INT1 (TILEM_NUM_SYS_TIMERS + 1) #define TIMER_INT2A (TILEM_NUM_SYS_TIMERS + 2) #define TIMER_INT2B (TILEM_NUM_SYS_TIMERS + 3) #define NUM_HW_TIMERS 3 #define HW_TIMER_NAMES { "int1", "int2a", "int2b" } void x3_reset(TilemCalc* calc); byte x3_z80_in(TilemCalc* calc, dword port); void x3_z80_out(TilemCalc* calc, dword port, byte value); void x3_z80_ptimer(TilemCalc* calc, int id); void x3_z80_wrmem(TilemCalc* calc, dword addr, byte value); byte x3_z80_rdmem(TilemCalc* calc, dword addr); dword x3_mem_ltop(TilemCalc* calc, dword addr); dword x3_mem_ptol(TilemCalc* calc, dword addr); #endif