@@ -251,16 +251,13 @@ void pg1000_state::pg1000(machine_config &config)
251
251
auto &mdin (MIDI_PORT (config, " mdin" ));
252
252
midiin_slot (mdin);
253
253
mdin.rxd_handler ().set ([this ] (bool state) { m_mdin_bit = state; });
254
- mdin.rxd_handler ().append (" mdthru" , FUNC (midi_port_device::write_txd));
255
254
256
255
midiout_slot (MIDI_PORT (config, " mdout" ));
257
256
258
- auto &mdthru (MIDI_PORT (config, " mdthru" ));
259
- midiout_slot (mdthru);
260
-
261
- auto ¶mreq (MIDI_PORT (config, " param_req" ));
262
- midiin_slot (paramreq);
263
- paramreq.rxd_handler ().set ([this ] (bool state) { m_paramreq_bit = state; });
257
+ /* TODO: What is the correct way of declaring this "Parameter In" port? */
258
+ // auto ¶min(MIDI_PORT(config, "param_in"));
259
+ // midiin_slot(paramin);
260
+ // paramreq.rxd_handler().set([this] (bool state) { m_paramreq_bit = state; });
264
261
265
262
UPD78C10 (config, m_maincpu, 12_MHz_XTAL);
266
263
m_maincpu->set_addrmap (AS_PROGRAM, &pg1000_state::mem_map);
@@ -406,4 +403,4 @@ ROM_START(pg1000)
406
403
ROMX_LOAD(" roland_pg-1000_v1.00.ic4" , 0x000 , 0x2000 , CRC(c09ef84e) SHA1(d780d4d53e57918e6ea8098f54f5c9b43aeec287), ROM_BIOS(2 ))
407
404
ROM_END
408
405
409
- SYST(1987 , pg1000, 0 , 0 , pg1000, pg1000, pg1000_state, empty_init, " Roland" , " PG-1000 Programmer" , MACHINE_NO_SOUND_HW)
406
+ SYST(1987 , pg1000, 0 , 0 , pg1000, pg1000, pg1000_state, empty_init, " Roland" , " PG-1000 Programmer" , MACHINE_NOT_WORKING | MACHINE_NO_SOUND_HW)
0 commit comments