mirror of
https://github.com/holub/mame
synced 2025-04-26 02:07:14 +03:00
02974: dmdtouch: Freeze/Hang of process
This commit is contained in:
parent
dda0722d33
commit
abfaf54b0a
@ -113,11 +113,14 @@ static TIMER_CALLBACK( a310_audio_tick )
|
|||||||
|
|
||||||
static void a310_set_timer(int tmr)
|
static void a310_set_timer(int tmr)
|
||||||
{
|
{
|
||||||
double freq = 2000000.0 / (double)ioc_timercnt[tmr];
|
double freq;
|
||||||
|
|
||||||
// logerror("IOC: starting timer %d, %d ticks, freq %f Hz\n", tmr, ioc_timercnt[tmr], freq);
|
if((double)ioc_timercnt[tmr] != 0) // FIXME: dmdtouch does a divide by zero?
|
||||||
|
{
|
||||||
timer_adjust_oneshot(timer[tmr], ATTOTIME_IN_HZ(freq), tmr);
|
freq = 2000000.0 / (double)ioc_timercnt[tmr];
|
||||||
|
// logerror("IOC: starting timer %d, %d ticks, freq %f Hz\n", tmr, ioc_timercnt[tmr], freq);
|
||||||
|
timer_adjust_oneshot(timer[tmr], ATTOTIME_IN_HZ(freq), tmr);
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
// param
|
// param
|
||||||
@ -366,6 +369,7 @@ WRITE32_HANDLER(ioc_w)
|
|||||||
#ifdef MESS
|
#ifdef MESS
|
||||||
const device_config *fdc = (const device_config *)devtag_get_device(space->machine, "wd1772");
|
const device_config *fdc = (const device_config *)devtag_get_device(space->machine, "wd1772");
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
if (offset >= 0x80000 && offset < 0xc0000)
|
if (offset >= 0x80000 && offset < 0xc0000)
|
||||||
{
|
{
|
||||||
// logerror("IOC: W %02x @ reg %s (PC=%x)\n", data&0xff, ioc_regnames[offset&0x1f], cpu_get_pc( space->cpu ));
|
// logerror("IOC: W %02x @ reg %s (PC=%x)\n", data&0xff, ioc_regnames[offset&0x1f], cpu_get_pc( space->cpu ));
|
||||||
|
Loading…
Reference in New Issue
Block a user