Skip to content

Commit

Permalink
design_master: small update to prev commit
Browse files Browse the repository at this point in the history
  • Loading branch information
happppp authored and stonedDiscord committed Apr 8, 2024
1 parent 8d9b29a commit 5e5a905
Showing 1 changed file with 5 additions and 3 deletions.
8 changes: 5 additions & 3 deletions src/mame/bandai/design_master.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,9 @@
IC5 = Hitachi 74HC00 (5B2T HC00)
TODO: cartridge pinouts / information
TODO:
- cartridge pinouts / information
- needs H8/329 family emulation
NOTE: cartridge dumps contain boot vectors so Internal ROM likely only used when no cartridge is present
Expand Down Expand Up @@ -125,7 +127,7 @@ uint32_t bdsm_state::screen_update(screen_device &screen, bitmap_rgb32 &bitmap,
void bdsm_state::bdesignm(machine_config &config)
{
/* basic machine hardware */
H83334(config, m_maincpu, XTAL(20'000'000)); /* H8/328 (24kbytes internal ROM, 1kbyte internal ROM) ?Mhz */
H83334(config, m_maincpu, 16_MHz_XTAL / 2); /* H8/328 (24kbytes internal ROM, 1kbyte internal ROM) ?Mhz */
m_maincpu->set_addrmap(AS_PROGRAM, &bdsm_state::mem_map);
m_maincpu->read_port7().set(FUNC(bdsm_state::io_p7_r));

Expand All @@ -145,7 +147,7 @@ void bdsm_state::bdesignm(machine_config &config)

ROM_START( bdesignm )
ROM_REGION16_BE(0x88000, "roms", ROMREGION_ERASE00)
ROM_LOAD( "designmaster_h8_328.bin", 0x00000, 0x8000, CRC(c20aeb48) SHA1(63deb44468b06c188dc92dee56472a9d926f0896) ) // internal rom (When the console is booted up without a cart it enters the default (builtin) art / drawing program, otherwise probably not used as carts contain boot vectors etc.)
ROM_LOAD( "h8_328_hd6433288f8_l04.ic1", 0x00000, 0x6000, CRC(2c6b8fb0) SHA1(b958b0bc27f18b7dda4fe852b3fd070a66586edb) ) // internal rom (When the console is booted up without a cart it enters the default (builtin) art / drawing program, otherwise probably not used as carts contain boot vectors etc.)
ROM_END

} // anonymous namespace
Expand Down

0 comments on commit 5e5a905

Please sign in to comment.