Previous 199869 Revisions Next

r32886 Wednesday 22nd October, 2014 at 19:44:24 UTC by James Wallace
Altered FIRQ and NMI handling to improve Maygay M1 operation.
[src/mame/drivers]maygay1b.c
[src/mame/includes]maygay1b.h

trunk/src/mame/drivers/maygay1b.c
r241397r241398
100100
101101///////////////////////////////////////////////////////////////////////////
102102
103/* 6809 IRQ handler */
104void maygay1b_state::cpu0_firq(int data)
105{
106   m_maincpu->set_input_line(M6809_FIRQ_LINE, data ? ASSERT_LINE : CLEAR_LINE);
107}
108
109
103110// IRQ from Duart (hopper?)
104111WRITE_LINE_MEMBER(maygay1b_state::duart_irq_handler)
105112{
r241397r241398
110117// FIRQ, related to the sample playback?
111118READ8_MEMBER( maygay1b_state::m1_firq_trg_r )
112119{
113   static int i = 0xff;
114   i ^= 0xff;
115   m_maincpu->set_input_line(M6809_FIRQ_LINE, HOLD_LINE);
116   LOG(("6809 firq\n"));
117   return i;
120   int nar = m_msm6376->nar_r();
121   if (nar)
122   {
123      cpu0_firq(1);
124   }
125   return nar;
118126}
119127
120128READ8_MEMBER( maygay1b_state::m1_firq_clr_r )
121129{
122   static int i = 0xff;
123   i ^= 0xff;
124   m_maincpu->set_input_line(M6809_FIRQ_LINE, CLEAR_LINE);
125   LOG(("6809 firq clr\n"));
126   return i;
130   cpu0_firq(0);
131   return 0;
127132}
128133
129134// NMI is periodic? or triggered by a write?
130135TIMER_DEVICE_CALLBACK_MEMBER( maygay1b_state::maygay1b_nmitimer_callback )
131136{
137//disabling for now
132138   if (m_NMIENABLE)
133139   {
134140      LOG(("6809 nmi\n"));
135      m_maincpu->set_input_line(INPUT_LINE_NMI, HOLD_LINE);
141      m_maincpu->set_input_line(INPUT_LINE_NMI, PULSE_LINE);
142      m_NMIENABLE=0;
136143   }
144
137145}
138146
139
140
147/*
148void maygay1b_state::cpu0_nmi(int data)
149{
150   m_maincpu->set_input_line(INPUT_LINE_NMI, PULSE_LINE);
151}
152*/
141153/***************************************************************************
142154    6821 PIA
143155***************************************************************************/
r241397r241398
145157// some games might differ..
146158WRITE8_MEMBER(maygay1b_state::m1_pia_porta_w)
147159{
148//  printf("m1_pia_porta_w %02x\n",data);
149
150   m_vfd->por(!(data & 0x40));
160   m_vfd->por(data & 0x40);
151161   m_vfd->data(data & 0x10);
152162   m_vfd->sclk(data & 0x20);
153163}
r241397r241398
156166{
157167   int i;
158168   for (i=0; i<8; i++)
159      if ( data & (1 << i) )      output_set_indexed_value("triac", i, data & (1 << i));
169   {
170      if ( data & (1 << i) )     
171      {
172         output_set_indexed_value("triac", i, data & (1 << i));
173      }
174   }
160175}
161176
162177// input ports for M1 board ////////////////////////////////////////
r241397r241398
361376      m_ALARMEN = (data & 1);
362377      break;
363378      case 2: // Enable
364      //printf("nmi enable %02x\n",data);
365      m_NMIENABLE = (data & 1);
379        if ( m_NMIENABLE == 0 && ( data & 1 ) )
380      {
381         m_NMIENABLE = (data & 1);
382         //cpu0_nmi(1);
383      }
366384      break;
367385      case 3: // RTS
368386      {
trunk/src/mame/includes/maygay1b.h
r241397r241398
9494   DECLARE_DRIVER_INIT(m1);
9595   virtual void machine_start();
9696   virtual void machine_reset();
97   void cpu0_firq(int data);
98   void cpu0_nmi(int data);
9799   void m1_stepper_reset();
98100};


Previous 199869 Revisions Next


© 1997-2024 The MAME Team