Example #1
0
/*-------------------------------------------------------------------------

	Reset all internal register and variables to a known state.

---------------------------------------------------------------------------*/
void neogeo_shutdown ( void )
{
	/* Stop cd audio replay */
	neogeo_cdrom_stop();

	/* Close the data track file */
	fclose ( neogeo_data_track );

	z80_exit();

	/*	neogeo_dump_all_ram();*/
}
Example #2
0
void gen_shutdown(void)
{
    z80_exit();
}
Example #3
0
int sms_z80_shutdown(void) {
    free(cpuz80);
    z80_exit();

    return 0;
}