Previous 199869 Revisions Next

r33744 Monday 8th December, 2014 at 18:06:22 UTC by Curt Coder
(MESS) victor9k: Patched out floppy SCP self test temporarily, cpm86 boots now but hangs while loading menu. (nw)
[src/mess/drivers]victor9k.c
[src/mess/includes]victor9k.h

trunk/src/mess/drivers/victor9k.c
r242255r242256
395395   // memory banking
396396   address_space &program = m_maincpu->space(AS_PROGRAM);
397397   program.install_ram(0x00000, m_ram->size() - 1, m_ram->pointer());
398
399   // patch out SCP self test
400   m_rom->base()[0x11ab] = 0xc3;
401
402   // patch out ROM checksum error
403   m_rom->base()[0x1d51] = 0x90;
404   m_rom->base()[0x1d52] = 0x90;
405   m_rom->base()[0x1d53] = 0x90;
406   m_rom->base()[0x1d54] = 0x90;
398407}
399408
400409void victor9k_state::machine_reset()
trunk/src/mess/includes/victor9k.h
r242255r242256
7171      m_rs232a(*this, RS232_A_TAG),
7272      m_rs232b(*this, RS232_B_TAG),
7373      m_palette(*this, "palette"),
74      m_rom(*this, I8088_TAG),
7475      m_video_ram(*this, "video_ram"),
7576      m_brt(0),
7677      m_cont(0),
r242255r242256
9798   required_device<rs232_port_device> m_rs232a;
9899   required_device<rs232_port_device> m_rs232b;
99100   required_device<palette_device> m_palette;
101   required_memory_region m_rom;
100102   required_shared_ptr<UINT8> m_video_ram;
101103
102104   virtual void machine_start();


Previous 199869 Revisions Next


© 1997-2024 The MAME Team