polgar: add note (nw)

This commit is contained in:
hap 2019-06-02 16:33:55 +02:00
parent f55cd9ad7e
commit d801f8f8e3
3 changed files with 4 additions and 2 deletions

View File

@ -15,7 +15,6 @@ see chessmachine_device for technical notes
DEFINE_DEVICE_TYPE(CENTRONICS_CHESSMEC, centronics_chessmec_device, "centronics_chessmec", "The ChessMachine EC")
//-------------------------------------------------
// constructor
//-------------------------------------------------

View File

@ -33,7 +33,6 @@ protected:
private:
required_device<chessmachine_device> m_chessm;
};

View File

@ -383,11 +383,15 @@ ROM_END
ROM_START(mrisc)
ROM_REGION(0x20000, "maincpu", 0)
// contains ChessMachine engine at 0x0-0x03fff + 0x10000-0x1c74f, concatenate those sections and make a .bin file,
// then it will work on ChessMachine software. It identifies as R E B E L ver. HG-021 03-04-92
ROM_LOAD("meph-risci-v1-2.bin", 0x00000, 0x20000, CRC(19c6ab83) SHA1(0baab84e5aa6999c24250938d207145144945fd5))
ROM_END
ROM_START(mrisc2)
ROM_REGION(0x20000, "maincpu", 0)
// contains ChessMachine engine at 0x0-0x03fff + 0x10000-0x1cb7f, concatenate those sections and make a .bin file,
// then it will work on ChessMachine software. It identifies as R E B E L ver. 2.31 22-07-93, world champion Madrid 1992
ROM_LOAD("meph-riscii-v2.bin", 0x00000, 0x20000, CRC(9ecf9cd3) SHA1(7bfc628183037a172242c9589f15aca218d8fb12))
ROM_END