Exemple #1
0
void exit_dec0_aud()
{
	BurnYM3812Exit();
	BurnYM2203Exit();
	MSM6295Exit(0);
	free(Ram);
	free(Rom);
	free(MSM6295ROM);
	m6502Exit();
}
Exemple #2
0
static INT32 DrvExit()
{
	BurnYM3812Exit();
	ToaPalExit();

	ToaExitBCU2();
	ToaZExit();				// Z80 exit
	SekExit();				// Deallocate 68000s

	BurnFree(Mem);

	return 0;
}
Exemple #3
0
static INT32 DrvExit()
{
	BurnYM3812Exit();
	ToaPalExit();

	ToaExitBCU2();
	ToaZExit();
	SekExit();

	BurnFree(AllMem);

	return 0;
}
Exemple #4
0
static INT32 DrvExit()
{
    ToaPalExit();

    BurnYM3812Exit();
    ToaExitGP9001();
    SekExit();				// Deallocate 68000s
    ZetExit();

    BurnFree(Mem);

    return 0;
}
Exemple #5
0
static int DrvExit()
{
	BurnYM3812Exit();
	ToaPalExit();

	ToaExitBCU2();
	ToaZExit();				// Z80 exit
	SekExit();				// Deallocate 68000s

	// Deallocate all used memory
	free(Mem);
	Mem = NULL;

	return 0;
}
Exemple #6
0
static int DrvExit()
{
    BurnYM3812Exit();
    ToaPalExit();

    ToaExitBCU2();
    ToaZExit();
    ZetExit();
    SekExit();

    free(AllMem);
    AllMem = NULL;

    return 0;
}