fixNES/vrc_irq.c
FIX94 f5d72bb48e
-reworked most of the code related to how memory is read and written to, also in the process improved accuracy of a lot of the implemented mappers and improved performance
-reworked most of the ppu, this gets rid of some small graphical glitches as well as further improve performance
-improved cpu core to now do some rare operations more accurately
-greatly improved soft reset to now work properly with multicart mappers and not cause any more weird freezing with certain games
2018-07-16 01:47:36 +02:00

117 lines
2.3 KiB
C

/*
* Copyright (C) 2017 - 2018 FIX94
*
* This software may be modified and distributed under the terms
* of the MIT license. See the LICENSE file for details.
*/
#include <stdio.h>
#include <stdbool.h>
#include <inttypes.h>
#include "cpu.h"
static uint8_t vrc_irqCtr;
static uint8_t vrc_irqCurCtr;
static uint8_t vrc_irqPrescaler;
static uint8_t vrc_irq_scanTblPos;
static bool vrc_irqEnabled;
static bool vrc_irqEnable_after_ack;
static bool vrc_irqCyclemode;
extern uint8_t interrupt;
static uint8_t vrc_irq_scanTbl[3] = { 113, 113, 112 };
void vrc_irq_init()
{
vrc_irqCtr = 0;
vrc_irqCurCtr = 0;
vrc_irqPrescaler = 0;
vrc_irqEnabled = false;
vrc_irqEnable_after_ack = false;
vrc_irqCyclemode = false;
vrc_irq_scanTblPos = 0;
printf("Using Common VRC Mapper IRQ\n");
}
void vrc_irq_setlatch(uint16_t addr, uint8_t val)
{
(void)addr;
vrc_irqCtr = val;
}
void vrc_irq_setlatchLo(uint16_t addr, uint8_t val)
{
(void)addr;
vrc_irqCtr = (vrc_irqCtr&~0xF) | (val&0xF);
}
void vrc_irq_setlatchHi(uint16_t addr, uint8_t val)
{
(void)addr;
vrc_irqCtr = (vrc_irqCtr&0xF) | ((val&0xF)<<4);
}
void vrc_irq_control(uint16_t addr, uint8_t val)
{
(void)addr;
interrupt &= ~MAPPER_IRQ;
vrc_irqEnable_after_ack = ((val&1) != 0);
vrc_irqCyclemode = ((val&4) != 0);
if((val&2) != 0)
{
vrc_irqEnabled = true;
vrc_irqCurCtr = vrc_irqCtr;
vrc_irqPrescaler = 0;
vrc_irq_scanTblPos = 0;
//printf("vrc_irq IRQ Reload with in %02x ctr %i\n", val, vrc_irqCtr);
}
else
{
vrc_irqEnabled = false;
//printf("vrc_irq IRQ Write with in %02x ctr %i\n", val, vrc_irqCtr);
}
}
void vrc_irq_ack(uint16_t addr, uint8_t val)
{
(void)addr; (void)val;
interrupt &= ~MAPPER_IRQ;
vrc_irqEnabled = vrc_irqEnable_after_ack;
//printf("vrc_irq ACK IRQ Reload\n");
}
void vrc_irq_ctrcycle()
{
if(vrc_irqCurCtr == 0xFF)
{
//printf("vrc_irq Cycle Interrupt\n");
interrupt |= MAPPER_IRQ;
//vrc_irqEnabled = false;
vrc_irqCurCtr = vrc_irqCtr;
}
else
vrc_irqCurCtr++;
}
void vrc_irq_cycle()
{
if(vrc_irqEnabled)
{
if(vrc_irqCyclemode)
vrc_irq_ctrcycle();
else
{
if(vrc_irqPrescaler >= vrc_irq_scanTbl[vrc_irq_scanTblPos])
{
vrc_irq_ctrcycle();
vrc_irq_scanTblPos++;
if(vrc_irq_scanTblPos >= 3)
vrc_irq_scanTblPos = 0;
vrc_irqPrescaler = 0;
}
else
vrc_irqPrescaler++;
}
}
}