mame/src/mess/drivers/pmi80.c

171 lines
6.2 KiB
C

/***************************************************************************
Tesla PMI-80
12/05/2009 Skeleton driver.
20/06/2011 Made mostly working [Robbbert]
ToDo:
- cassette
- keyboard to be finished
- artwork
Notes:
- Keyboard consists of 16 black hex keys, and 9 blue function keys
- The hex keys are 0 through 9, A through F on our keyboard
- The function keys are mostly not worked out although I've guessed a few
- The function key labels are RE, I, EX, R, BR, M, L, S, =
- The letter M shows as an inverted U in the display
- Turn it on, it says ''PMI -80''
- Press any key, it shows a ? at the left
- Press the function key corresponding to what you want to do
- Press the numbers to select an address or whatever
- For example, press M then enter an address, press =, enter data,
press = to increment to next address or to scan through them.
- As for the rest, no idea
- In the layout, there is a 10th digit. It is disabled but if you
enable it (by renaming 'digitx' to 'digit9'), it will display
things. Perhaps it connected to discrete LEDs or output lines.
****************************************************************************/
#include "emu.h"
#include "cpu/i8085/i8085.h"
#include "pmi80.lh"
class pmi80_state : public driver_device
{
public:
pmi80_state(const machine_config &mconfig, device_type type, const char *tag)
: driver_device(mconfig, type, tag),
m_ledready(0)
{ }
DECLARE_READ8_MEMBER(keyboard_r);
DECLARE_WRITE8_MEMBER(keyboard_w);
DECLARE_WRITE8_MEMBER(leds_w);
UINT8 m_keyrow;
bool m_ledready;
virtual void machine_reset();
};
READ8_MEMBER( pmi80_state::keyboard_r)
{
char kbdrow[6];
sprintf(kbdrow,"%X",m_keyrow);
return ioport(kbdrow)->read();
}
WRITE8_MEMBER( pmi80_state::keyboard_w )
{
m_keyrow = data;
m_ledready = TRUE;
}
WRITE8_MEMBER( pmi80_state::leds_w )
{
if (m_ledready)
{
m_ledready = FALSE;
output_set_digit_value(m_keyrow^0xff, data^0xff);
}
}
static ADDRESS_MAP_START(pmi80_mem, AS_PROGRAM, 8, pmi80_state)
ADDRESS_MAP_UNMAP_HIGH
AM_RANGE( 0x0000, 0x03ff ) AM_ROM
AM_RANGE( 0x0400, 0x1fff ) AM_RAM
ADDRESS_MAP_END
static ADDRESS_MAP_START(pmi80_io, AS_IO, 8, pmi80_state)
ADDRESS_MAP_UNMAP_HIGH
ADDRESS_MAP_GLOBAL_MASK(0xff)
AM_RANGE(0xf8, 0xf8) AM_WRITE(leds_w)
AM_RANGE(0xfa, 0xfa) AM_READWRITE(keyboard_r,keyboard_w)
ADDRESS_MAP_END
/* Input ports */
static INPUT_PORTS_START( pmi80 )
PORT_START("F6")
PORT_BIT(0x10, IP_ACTIVE_LOW, IPT_UNUSED) // does nothing
PORT_BIT(0x20, IP_ACTIVE_LOW, IPT_KEYBOARD) PORT_NAME("??") PORT_CODE(KEYCODE_Q) // unknown
PORT_BIT(0x40, IP_ACTIVE_LOW, IPT_UNUSED) // same as '2'
PORT_BIT(0x8F, IP_ACTIVE_LOW, IPT_UNUSED)
PORT_START("F7")
PORT_BIT(0x10, IP_ACTIVE_LOW, IPT_KEYBOARD) PORT_NAME("=") PORT_CODE(KEYCODE_EQUALS)
PORT_BIT(0x20, IP_ACTIVE_LOW, IPT_KEYBOARD) PORT_NAME("3") PORT_CODE(KEYCODE_3)
PORT_BIT(0x40, IP_ACTIVE_LOW, IPT_KEYBOARD) PORT_NAME("1") PORT_CODE(KEYCODE_1)
PORT_BIT(0x8F, IP_ACTIVE_LOW, IPT_UNUSED)
PORT_START("F8")
PORT_BIT(0x10, IP_ACTIVE_LOW, IPT_KEYBOARD) PORT_NAME("??") PORT_CODE(KEYCODE_W) // unknown
PORT_BIT(0x20, IP_ACTIVE_LOW, IPT_KEYBOARD) PORT_NAME("7") PORT_CODE(KEYCODE_7)
PORT_BIT(0x40, IP_ACTIVE_LOW, IPT_KEYBOARD) PORT_NAME("5") PORT_CODE(KEYCODE_5)
PORT_BIT(0x8F, IP_ACTIVE_LOW, IPT_UNUSED)
PORT_START("F9")
PORT_BIT(0x10, IP_ACTIVE_LOW, IPT_KEYBOARD) PORT_NAME("??") PORT_CODE(KEYCODE_R) // unknown
PORT_BIT(0x20, IP_ACTIVE_LOW, IPT_KEYBOARD) PORT_NAME("B BC") PORT_CODE(KEYCODE_B)
PORT_BIT(0x40, IP_ACTIVE_LOW, IPT_KEYBOARD) PORT_NAME("9 HL") PORT_CODE(KEYCODE_9)
PORT_BIT(0x8F, IP_ACTIVE_LOW, IPT_UNUSED)
PORT_START("FA")
PORT_BIT(0x10, IP_ACTIVE_LOW, IPT_KEYBOARD) PORT_NAME("M") PORT_CODE(KEYCODE_M) // memory mode
PORT_BIT(0x20, IP_ACTIVE_LOW, IPT_KEYBOARD) PORT_NAME("E") PORT_CODE(KEYCODE_E)
PORT_BIT(0x40, IP_ACTIVE_LOW, IPT_KEYBOARD) PORT_NAME("C") PORT_CODE(KEYCODE_C)
PORT_BIT(0x8F, IP_ACTIVE_LOW, IPT_UNUSED)
PORT_START("FB")
PORT_BIT(0x10, IP_ACTIVE_LOW, IPT_KEYBOARD) PORT_NAME("BR") PORT_CODE(KEYCODE_B) // b mode?
PORT_BIT(0x20, IP_ACTIVE_LOW, IPT_KEYBOARD) PORT_NAME("F") PORT_CODE(KEYCODE_F)
PORT_BIT(0x40, IP_ACTIVE_LOW, IPT_KEYBOARD) PORT_NAME("D DE") PORT_CODE(KEYCODE_D)
PORT_BIT(0x8F, IP_ACTIVE_LOW, IPT_UNUSED)
PORT_START("FC")
PORT_BIT(0x10, IP_ACTIVE_LOW, IPT_KEYBOARD) PORT_NAME("??") PORT_CODE(KEYCODE_T) // unknown
PORT_BIT(0x20, IP_ACTIVE_LOW, IPT_KEYBOARD) PORT_NAME("??") PORT_CODE(KEYCODE_Y) // unknown
PORT_BIT(0x40, IP_ACTIVE_LOW, IPT_KEYBOARD) PORT_NAME("EX") PORT_CODE(KEYCODE_G) // Go?
PORT_BIT(0x8F, IP_ACTIVE_LOW, IPT_UNUSED)
PORT_START("FD")
PORT_BIT(0x10, IP_ACTIVE_LOW, IPT_KEYBOARD) PORT_NAME("L") PORT_CODE(KEYCODE_L) // Load tape?
PORT_BIT(0x20, IP_ACTIVE_LOW, IPT_KEYBOARD) PORT_NAME("A AF") PORT_CODE(KEYCODE_A)
PORT_BIT(0x40, IP_ACTIVE_LOW, IPT_KEYBOARD) PORT_NAME("8 SP") PORT_CODE(KEYCODE_8)
PORT_BIT(0x8F, IP_ACTIVE_LOW, IPT_UNUSED)
PORT_START("FE")
PORT_BIT(0x10, IP_ACTIVE_LOW, IPT_KEYBOARD) PORT_NAME("S") PORT_CODE(KEYCODE_S) // Save tape?
PORT_BIT(0x20, IP_ACTIVE_LOW, IPT_KEYBOARD) PORT_NAME("6") PORT_CODE(KEYCODE_6)
PORT_BIT(0x40, IP_ACTIVE_LOW, IPT_KEYBOARD) PORT_NAME("4") PORT_CODE(KEYCODE_4)
PORT_BIT(0x8F, IP_ACTIVE_LOW, IPT_UNUSED)
PORT_START("FF")
PORT_BIT(0x10, IP_ACTIVE_LOW, IPT_KEYBOARD) PORT_NAME("??") PORT_CODE(KEYCODE_U) // unknown
PORT_BIT(0x20, IP_ACTIVE_LOW, IPT_KEYBOARD) PORT_NAME("2") PORT_CODE(KEYCODE_2)
PORT_BIT(0x40, IP_ACTIVE_LOW, IPT_KEYBOARD) PORT_NAME("0") PORT_CODE(KEYCODE_0)
PORT_BIT(0x8F, IP_ACTIVE_LOW, IPT_UNUSED)
INPUT_PORTS_END
void pmi80_state::machine_reset()
{
}
static MACHINE_CONFIG_START( pmi80, pmi80_state )
/* basic machine hardware */
MCFG_CPU_ADD("maincpu",I8080, XTAL_1MHz)
MCFG_CPU_PROGRAM_MAP(pmi80_mem)
MCFG_CPU_IO_MAP(pmi80_io)
/* video hardware */
MCFG_DEFAULT_LAYOUT(layout_pmi80)
MACHINE_CONFIG_END
/* ROM definition */
ROM_START( pmi80 )
ROM_REGION( 0x10000, "maincpu", ROMREGION_ERASEFF )
ROM_LOAD( "pmi80_monitor.rom", 0x0000, 0x0400, CRC(b93f4407) SHA1(43153441070ed0572f33d2815635eb7bae878e38))
ROM_END
/* Driver */
/* YEAR NAME PARENT COMPAT MACHINE INPUT INIT COMPANY FULLNAME FLAGS */
COMP( 1982, pmi80, 0, 0, pmi80, pmi80, driver_device, 0, "Tesla", "PMI-80", GAME_NO_SOUND_HW)