Previous 199869 Revisions Next

r30921 Monday 9th June, 2014 at 23:59:58 UTC by Robbbert
(MESS) New not-working printer [Felipe Sanchez]
-------------------------------------------------
Epson LX810L
[src/mess]mess.lst
[src/mess/drivers]lx800.c

trunk/src/mess/mess.lst
r30920r30921
19881988
19891989ex800 // Epson EX-800 printer
19901990lx800 // Epson LX-800 printer
1991lx810l // Epson LX-810L printer
19911992ssem // Manchester Small-Scale Experimental Machine, "Baby"
19921993craft // Craft, by [lft]
19931994
trunk/src/mess/drivers/lx800.c
r30920r30921
1313      input buttons and switches.
1414    - CPU disassembly doesn't seem to indicate conditional JR or RET.
1515
16
17    2014-06-10 Added LX810L, gets caught in a loop almost immediately.
18               IC list:
19               * uPD7810HG (cpu)
20               * E05A30 (gate array)
21               * 2064C (8k RAM)
22               * ER59256 (EEP-ROM - serial nvram)
23               * SLA7020M (step motor driver)
24               * uPC494C (pulse width modulation control)
25               May need to be split off to another driver.
26
1627***************************************************************************/
1728
1829#include "emu.h"
r30920r30921
313324
314325ROM_START( lx800 )
315326   ROM_REGION(0x8000, "maincpu", 0)
316   ROM_LOAD("lx800.ic3c", 0x0000, 0x8000, CRC(da06c45b) SHA1(9618c940dd10d5b43cd1edd5763b90e6447de667))
327   ROM_LOAD("lx800.ic3c", 0x0000, 0x8000, CRC(da06c45b) SHA1(9618c940dd10d5b43cd1edd5763b90e6447de667) )
317328ROM_END
318329
330ROM_START( lx810l )
331   ROM_REGION(0x8000, "maincpu", 0)
332   ROM_LOAD("lx810l.ic3c", 0x0000, 0x8000, CRC(a66454e1) SHA1(8e6f2f98abcbd8af6e34b9ba746edf0d18aef843) )
333ROM_END
319334
335
320336/***************************************************************************
321337    GAME DRIVERS
322338***************************************************************************/
323339
324340/*    YEAR  NAME   PARENT  COMPAT  MACHINE  INPUT  INIT  COMPANY  FULLNAME  FLAGS */
325341COMP( 1987, lx800, 0,      0,      lx800,   lx800, driver_device, 0,    "Epson", "LX-800 Printer", GAME_NOT_WORKING )
342COMP( 1987, lx810l,lx800,  0,      lx800,   lx800, driver_device, 0,    "Epson", "LX-810L Printer", GAME_NOT_WORKING )

Previous 199869 Revisions Next


© 1997-2024 The MAME Team