/// Switch sound system off void ngpSoundOff() { ngpRunning = 0; #if defined(DRZ80) || defined(CZ80) #else z80SetRunning(0); #endif }
/// Switch sound system off void ngpSoundOff() { ngpRunning = 0; #ifdef DRZ80 #else z80SetRunning(0); #endif }
void ngpSoundStart() { ngpRunning = 1; // ? #if defined(DRZ80) || defined(CZ80) Z80_Reset(); #else z80Init(); z80SetRunning(1); #endif }
// Initialize the NGPC sound engine (Z80) void ngpSoundStart() { ngpRunning = 1; // ? #ifdef DRZ80 Z80_Reset(); #else z80Init(); z80SetRunning(1); #endif }