Previous 199869 Revisions Next

r22877 Friday 17th May, 2013 at 20:26:14 UTC by Carl
pcxt: tags (nw)
[src/mame/drivers]pcxt.c

trunk/src/mame/drivers/pcxt.c
r22876r22877
398398READ8_MEMBER(pcxt_state::fdc765_data_r)
399399{
400400   m_status = (FDC_READ);
401   machine().device<pic8259_device>("pic8259_1")->ir6_w(0);
401   m_pic8259_1->ir6_w(0);
402402   return 0xc0;
403403}
404404
r22876r22877
411411WRITE8_MEMBER(pcxt_state::fdc_dor_w)
412412{
413413   /* TODO: properly hook-up upd765 FDC there */
414   machine().device<pic8259_device>("pic8259_1")->ir6_w(1);
414   m_pic8259_1->ir6_w(1);
415415}
416416
417417/******************

Previous 199869 Revisions Next


© 1997-2024 The MAME Team