mirror of
https://github.com/holub/mame
synced 2025-06-02 10:59:52 +03:00
(MESS) New not-working printer [Felipe Sanchez]
------------------------------------------------- Epson LX810L
This commit is contained in:
parent
ee971494f3
commit
94ee59cc3f
@ -13,6 +13,17 @@
|
||||
input buttons and switches.
|
||||
- CPU disassembly doesn't seem to indicate conditional JR or RET.
|
||||
|
||||
|
||||
2014-06-10 Added LX810L, gets caught in a loop almost immediately.
|
||||
IC list:
|
||||
* uPD7810HG (cpu)
|
||||
* E05A30 (gate array)
|
||||
* 2064C (8k RAM)
|
||||
* ER59256 (EEP-ROM - serial nvram)
|
||||
* SLA7020M (step motor driver)
|
||||
* uPC494C (pulse width modulation control)
|
||||
May need to be split off to another driver.
|
||||
|
||||
***************************************************************************/
|
||||
|
||||
#include "emu.h"
|
||||
@ -313,7 +324,12 @@ MACHINE_CONFIG_END
|
||||
|
||||
ROM_START( lx800 )
|
||||
ROM_REGION(0x8000, "maincpu", 0)
|
||||
ROM_LOAD("lx800.ic3c", 0x0000, 0x8000, CRC(da06c45b) SHA1(9618c940dd10d5b43cd1edd5763b90e6447de667))
|
||||
ROM_LOAD("lx800.ic3c", 0x0000, 0x8000, CRC(da06c45b) SHA1(9618c940dd10d5b43cd1edd5763b90e6447de667) )
|
||||
ROM_END
|
||||
|
||||
ROM_START( lx810l )
|
||||
ROM_REGION(0x8000, "maincpu", 0)
|
||||
ROM_LOAD("lx810l.ic3c", 0x0000, 0x8000, CRC(a66454e1) SHA1(8e6f2f98abcbd8af6e34b9ba746edf0d18aef843) )
|
||||
ROM_END
|
||||
|
||||
|
||||
@ -323,3 +339,4 @@ ROM_END
|
||||
|
||||
/* YEAR NAME PARENT COMPAT MACHINE INPUT INIT COMPANY FULLNAME FLAGS */
|
||||
COMP( 1987, lx800, 0, 0, lx800, lx800, driver_device, 0, "Epson", "LX-800 Printer", GAME_NOT_WORKING )
|
||||
COMP( 1987, lx810l,lx800, 0, lx800, lx800, driver_device, 0, "Epson", "LX-810L Printer", GAME_NOT_WORKING )
|
||||
|
@ -1988,6 +1988,7 @@ fanucs15 // 1990
|
||||
|
||||
ex800 // Epson EX-800 printer
|
||||
lx800 // Epson LX-800 printer
|
||||
lx810l // Epson LX-810L printer
|
||||
ssem // Manchester Small-Scale Experimental Machine, "Baby"
|
||||
craft // Craft, by [lft]
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user