@@ -58,7 +58,6 @@ class aerofgt_state : public driver_device
58
58
void setbank (int layer, int num, int bank);
59
59
void gfxbank_w (offs_t offset, uint16_t data, uint16_t mem_mask = ~0 );
60
60
uint32_t tile_callback (uint32_t code);
61
- uint8_t soundlatch_pending_r ();
62
61
void soundlatch_pending_w (int state);
63
62
void sh_bankswitch_w (uint8_t data);
64
63
@@ -186,16 +185,10 @@ uint32_t aerofgt_state::screen_update(screen_device &screen, bitmap_ind16 &bitma
186
185
}
187
186
188
187
189
- uint8_t aerofgt_state::soundlatch_pending_r ()
190
- {
191
- return m_soundlatch->pending_r ();
192
- }
193
-
194
188
void aerofgt_state::soundlatch_pending_w (int state)
195
189
{
196
190
m_audiocpu->set_input_line (INPUT_LINE_NMI, state ? ASSERT_LINE : CLEAR_LINE);
197
191
198
- // sound comms is 2-way (see soundlatch_pending_r),
199
192
// NMI routine is very short, so briefly set perfect_quantum to make sure that the timing is right
200
193
if (state)
201
194
machine ().scheduler ().perfect_quantum (attotime::from_usec (100 ));
@@ -453,4 +446,5 @@ ROM_END
453
446
454
447
} // anonymous namespace
455
448
456
- GAME ( 1992 , aerofgt, 0 , aerofgt, aerofgt, aerofgt_state, empty_init, ROT270, " Video System Co." , " Aero Fighters (World / USA + Canada / Korea / Hong Kong / Taiwan) (newer hardware)" , MACHINE_SUPPORTS_SAVE | MACHINE_NO_COCKTAIL )
449
+ GAME ( 1992 , aerofgt, 0 , aerofgt, aerofgt, aerofgt_state, empty_init, ROT270, " Video System Co." , " Aero Fighters (World / USA + Canada / Korea / Hong Kong / Taiwan) (newer hardware)" , MACHINE_SUPPORTS_SAVE | MACHINE_NO_COCKTAIL )
450
+ // All clones run on older type hardware and are in pspikes.cpp
0 commit comments