54 lines
1.8 KiB
C
54 lines
1.8 KiB
C
/*
|
|
* 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
|
|
* <http://www.gnu.org/licenses/>.
|
|
*/
|
|
|
|
#ifndef _TILEM_X1_H
|
|
#define _TILEM_X1_H
|
|
|
|
enum {
|
|
HW_VERSION, /* HW version: 0 = unknown
|
|
1 = original HW (1990-1992)
|
|
2 = revised HW (1992-1996) */
|
|
PORT2, /* memory mapping control (new HW) */
|
|
PORT3, /* mask of enabled interrupts */
|
|
PORT4, /* mapping mode, timer control */
|
|
PORT5, /* memory mapping bank A (old HW) */
|
|
PORT6, /* memory mapping bank B (old HW) */
|
|
NUM_HW_REGS
|
|
};
|
|
|
|
#define HW_REG_NAMES { "hw_version", "port2", "port3", "port4", "port5", "port6" }
|
|
|
|
#define TIMER_INT (TILEM_NUM_SYS_TIMERS + 1)
|
|
#define NUM_HW_TIMERS 1
|
|
|
|
#define HW_TIMER_NAMES { "int" }
|
|
|
|
void x1_reset(TilemCalc* calc);
|
|
byte x1_z80_in(TilemCalc* calc, dword port);
|
|
void x1_z80_out(TilemCalc* calc, dword port, byte value);
|
|
void x1_z80_ptimer(TilemCalc* calc, int id);
|
|
void x1_z80_wrmem(TilemCalc* calc, dword addr, byte value);
|
|
byte x1_z80_rdmem(TilemCalc* calc, dword addr);
|
|
dword x1_mem_ltop(TilemCalc* calc, dword addr);
|
|
dword x1_mem_ptol(TilemCalc* calc, dword addr);
|
|
void x1_get_lcd(TilemCalc* calc, byte* data);
|
|
|
|
#endif
|