mirror of https://github.com/mgba-emu/mgba.git
GBA Video: Clean up unused timers
This commit is contained in:
parent
7ae3640bb5
commit
fc69cdce60
1
CHANGES
1
CHANGES
|
@ -29,6 +29,7 @@ Misc:
|
||||||
- SDL: Remove scancode key input
|
- SDL: Remove scancode key input
|
||||||
- GB Video: Improved video timings
|
- GB Video: Improved video timings
|
||||||
- All: Split out install locations for Libretro and OpenEmu
|
- All: Split out install locations for Libretro and OpenEmu
|
||||||
|
- GBA Video: Clean up unused timers
|
||||||
|
|
||||||
0.5.0: (2016-09-19)
|
0.5.0: (2016-09-19)
|
||||||
Features:
|
Features:
|
||||||
|
|
|
@ -81,10 +81,6 @@ void GBAVideoReset(struct GBAVideo* video) {
|
||||||
video->nextEvent = video->nextHblank;
|
video->nextEvent = video->nextHblank;
|
||||||
video->eventDiff = 0;
|
video->eventDiff = 0;
|
||||||
|
|
||||||
video->nextHblankIRQ = 0;
|
|
||||||
video->nextVblankIRQ = 0;
|
|
||||||
video->nextVcounterIRQ = 0;
|
|
||||||
|
|
||||||
video->frameCounter = 0;
|
video->frameCounter = 0;
|
||||||
video->frameskipCounter = 0;
|
video->frameskipCounter = 0;
|
||||||
|
|
||||||
|
@ -122,8 +118,6 @@ int32_t GBAVideoProcessEvents(struct GBAVideo* video, int32_t cycles) {
|
||||||
if (video->nextEvent <= 0) {
|
if (video->nextEvent <= 0) {
|
||||||
int32_t lastEvent = video->nextEvent;
|
int32_t lastEvent = video->nextEvent;
|
||||||
video->nextHblank -= video->eventDiff;
|
video->nextHblank -= video->eventDiff;
|
||||||
video->nextHblankIRQ -= video->eventDiff;
|
|
||||||
video->nextVcounterIRQ -= video->eventDiff;
|
|
||||||
video->eventDiff = 0;
|
video->eventDiff = 0;
|
||||||
uint16_t dispstat = video->p->memory.io[REG_DISPSTAT >> 1];
|
uint16_t dispstat = video->p->memory.io[REG_DISPSTAT >> 1];
|
||||||
|
|
||||||
|
@ -142,7 +136,6 @@ int32_t GBAVideoProcessEvents(struct GBAVideo* video, int32_t cycles) {
|
||||||
dispstat = GBARegisterDISPSTATFillVcounter(dispstat);
|
dispstat = GBARegisterDISPSTATFillVcounter(dispstat);
|
||||||
if (GBARegisterDISPSTATIsVcounterIRQ(dispstat)) {
|
if (GBARegisterDISPSTATIsVcounterIRQ(dispstat)) {
|
||||||
GBARaiseIRQ(video->p, IRQ_VCOUNTER);
|
GBARaiseIRQ(video->p, IRQ_VCOUNTER);
|
||||||
video->nextVcounterIRQ += VIDEO_TOTAL_LENGTH;
|
|
||||||
}
|
}
|
||||||
} else {
|
} else {
|
||||||
dispstat = GBARegisterDISPSTATClearVcounter(dispstat);
|
dispstat = GBARegisterDISPSTATClearVcounter(dispstat);
|
||||||
|
@ -159,7 +152,6 @@ int32_t GBAVideoProcessEvents(struct GBAVideo* video, int32_t cycles) {
|
||||||
if (video->frameskipCounter <= 0) {
|
if (video->frameskipCounter <= 0) {
|
||||||
video->renderer->finishFrame(video->renderer);
|
video->renderer->finishFrame(video->renderer);
|
||||||
}
|
}
|
||||||
video->nextVblankIRQ = video->nextEvent + VIDEO_TOTAL_LENGTH;
|
|
||||||
GBAMemoryRunVblankDMAs(video->p, lastEvent);
|
GBAMemoryRunVblankDMAs(video->p, lastEvent);
|
||||||
if (GBARegisterDISPSTATIsVblankIRQ(dispstat)) {
|
if (GBARegisterDISPSTATIsVblankIRQ(dispstat)) {
|
||||||
GBARaiseIRQ(video->p, IRQ_VBLANK);
|
GBARaiseIRQ(video->p, IRQ_VBLANK);
|
||||||
|
@ -181,7 +173,6 @@ int32_t GBAVideoProcessEvents(struct GBAVideo* video, int32_t cycles) {
|
||||||
dispstat = GBARegisterDISPSTATFillInHblank(dispstat);
|
dispstat = GBARegisterDISPSTATFillInHblank(dispstat);
|
||||||
video->nextEvent = video->nextHblank + VIDEO_HBLANK_LENGTH;
|
video->nextEvent = video->nextHblank + VIDEO_HBLANK_LENGTH;
|
||||||
video->nextHblank = video->nextEvent + VIDEO_HDRAW_LENGTH;
|
video->nextHblank = video->nextEvent + VIDEO_HDRAW_LENGTH;
|
||||||
video->nextHblankIRQ = video->nextHblank;
|
|
||||||
|
|
||||||
if (video->vcount < VIDEO_VERTICAL_PIXELS && video->frameskipCounter <= 0) {
|
if (video->vcount < VIDEO_VERTICAL_PIXELS && video->frameskipCounter <= 0) {
|
||||||
video->renderer->drawScanline(video->renderer, video->vcount);
|
video->renderer->drawScanline(video->renderer, video->vcount);
|
||||||
|
@ -202,16 +193,7 @@ int32_t GBAVideoProcessEvents(struct GBAVideo* video, int32_t cycles) {
|
||||||
void GBAVideoWriteDISPSTAT(struct GBAVideo* video, uint16_t value) {
|
void GBAVideoWriteDISPSTAT(struct GBAVideo* video, uint16_t value) {
|
||||||
video->p->memory.io[REG_DISPSTAT >> 1] &= 0x7;
|
video->p->memory.io[REG_DISPSTAT >> 1] &= 0x7;
|
||||||
video->p->memory.io[REG_DISPSTAT >> 1] |= value;
|
video->p->memory.io[REG_DISPSTAT >> 1] |= value;
|
||||||
|
// TODO: Does a VCounter IRQ trigger on write?
|
||||||
uint16_t dispstat = video->p->memory.io[REG_DISPSTAT >> 1];
|
|
||||||
|
|
||||||
if (GBARegisterDISPSTATIsVcounterIRQ(dispstat)) {
|
|
||||||
// FIXME: this can be too late if we're in the middle of an Hblank
|
|
||||||
video->nextVcounterIRQ = video->nextHblank + VIDEO_HBLANK_LENGTH + (GBARegisterDISPSTATGetVcountSetting(dispstat) - video->vcount) * VIDEO_HORIZONTAL_LENGTH;
|
|
||||||
if (video->nextVcounterIRQ < video->nextEvent) {
|
|
||||||
video->nextVcounterIRQ += VIDEO_TOTAL_LENGTH;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
|
||||||
static void GBAVideoDummyRendererInit(struct GBAVideoRenderer* renderer) {
|
static void GBAVideoDummyRendererInit(struct GBAVideoRenderer* renderer) {
|
||||||
|
@ -317,9 +299,6 @@ void GBAVideoSerialize(const struct GBAVideo* video, struct GBASerializedState*
|
||||||
STORE_32(video->nextEvent, 0, &state->video.nextEvent);
|
STORE_32(video->nextEvent, 0, &state->video.nextEvent);
|
||||||
STORE_32(video->eventDiff, 0, &state->video.eventDiff);
|
STORE_32(video->eventDiff, 0, &state->video.eventDiff);
|
||||||
STORE_32(video->nextHblank, 0, &state->video.nextHblank);
|
STORE_32(video->nextHblank, 0, &state->video.nextHblank);
|
||||||
STORE_32(video->nextHblankIRQ, 0, &state->video.nextHblankIRQ);
|
|
||||||
STORE_32(video->nextVblankIRQ, 0, &state->video.nextVblankIRQ);
|
|
||||||
STORE_32(video->nextVcounterIRQ, 0, &state->video.nextVcounterIRQ);
|
|
||||||
STORE_32(video->frameCounter, 0, &state->video.frameCounter);
|
STORE_32(video->frameCounter, 0, &state->video.frameCounter);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -338,9 +317,6 @@ void GBAVideoDeserialize(struct GBAVideo* video, const struct GBASerializedState
|
||||||
LOAD_32(video->nextEvent, 0, &state->video.nextEvent);
|
LOAD_32(video->nextEvent, 0, &state->video.nextEvent);
|
||||||
LOAD_32(video->eventDiff, 0, &state->video.eventDiff);
|
LOAD_32(video->eventDiff, 0, &state->video.eventDiff);
|
||||||
LOAD_32(video->nextHblank, 0, &state->video.nextHblank);
|
LOAD_32(video->nextHblank, 0, &state->video.nextHblank);
|
||||||
LOAD_32(video->nextHblankIRQ, 0, &state->video.nextHblankIRQ);
|
|
||||||
LOAD_32(video->nextVblankIRQ, 0, &state->video.nextVblankIRQ);
|
|
||||||
LOAD_32(video->nextVcounterIRQ, 0, &state->video.nextVcounterIRQ);
|
|
||||||
LOAD_32(video->frameCounter, 0, &state->video.frameCounter);
|
LOAD_32(video->frameCounter, 0, &state->video.frameCounter);
|
||||||
LOAD_16(video->vcount, REG_VCOUNT, state->io);
|
LOAD_16(video->vcount, REG_VCOUNT, state->io);
|
||||||
video->renderer->reset(video->renderer);
|
video->renderer->reset(video->renderer);
|
||||||
|
|
|
@ -187,10 +187,6 @@ struct GBAVideo {
|
||||||
int32_t nextEvent;
|
int32_t nextEvent;
|
||||||
int32_t eventDiff;
|
int32_t eventDiff;
|
||||||
|
|
||||||
int32_t nextHblankIRQ;
|
|
||||||
int32_t nextVblankIRQ;
|
|
||||||
int32_t nextVcounterIRQ;
|
|
||||||
|
|
||||||
uint16_t palette[SIZE_PALETTE_RAM >> 1];
|
uint16_t palette[SIZE_PALETTE_RAM >> 1];
|
||||||
uint16_t* vram;
|
uint16_t* vram;
|
||||||
union GBAOAM oam;
|
union GBAOAM oam;
|
||||||
|
|
Loading…
Reference in New Issue