debug tracking driver updates

This commit is contained in:
Barry Harris 2014-04-20 21:08:44 +00:00
parent 04e679e504
commit 6b53374592
6 changed files with 11 additions and 1 deletions

View File

@ -515,6 +515,7 @@ static INT32 CommonInit(int type)
bram_locked = 1;
vdc_init();
vce_palette_init(DrvPalette);
c6280_init(3579545, 0);
@ -564,7 +565,7 @@ INT32 PCEExit()
GenericTilesExit();
c6280_exit();
// video exit
vdc_exit();
h6280Exit();

View File

@ -698,6 +698,7 @@ INT32 pgmInit()
pgmInitDraw();
v3021Init();
ics2115_init();
pBurnDrvPalette = (UINT32*)PGMPalRAM;
@ -728,6 +729,7 @@ INT32 pgmExit()
BurnFree(Mem);
v3021Exit();
ics2115_exit(); // frees ICSSNDROM
BurnFree (PGMTileROM);

View File

@ -341,6 +341,7 @@ static INT32 DrvExit()
{
SN76496Exit();
}
SlapsticExit();
BurnFree (AllMem);

View File

@ -1357,6 +1357,7 @@ static INT32 DrvExit()
ZetExit();
I8039Exit();
i8257Exit();
BurnSampleExit();
DACExit();
@ -1480,6 +1481,7 @@ static INT32 s2650DkongExit()
s2650Exit();
I8039Exit();
i8257Exit();
BurnSampleExit();
DACExit();

View File

@ -122,6 +122,7 @@ void atarigen_eeprom_init()
void atarigen_slapstic_exit()
{
BurnFree(atarigen_slapstic);
SlapsticExit();
}

View File

@ -568,6 +568,7 @@ static INT32 DrvInit()
YMZ280BSetRoute(BURN_SND_YMZ280B_YMZ280B_ROUTE_1, 1.00, BURN_SND_ROUTE_LEFT);
YMZ280BSetRoute(BURN_SND_YMZ280B_YMZ280B_ROUTE_2, 1.00, BURN_SND_ROUTE_RIGHT);
skns_init();
GenericTilesInit();
DrvDoReset(1);
@ -583,6 +584,8 @@ static INT32 DrvExit()
YMZ280BExit();
YMZ280BROM = NULL;
skns_exit();
BurnFree(AllMem);