mirror of
https://github.com/RetroDECK/Duckstation.git
synced 2024-11-23 14:25:37 +00:00
44 lines
1.1 KiB
C++
44 lines
1.1 KiB
C++
// SPDX-FileCopyrightText: 2019-2022 Connor McLaughlin <stenzek@gmail.com>
|
|
// SPDX-License-Identifier: (GPL-3.0 OR CC-BY-NC-ND-4.0)
|
|
|
|
#pragma once
|
|
#include "types.h"
|
|
|
|
class StateWrapper;
|
|
|
|
namespace InterruptController {
|
|
|
|
static constexpr u32 NUM_IRQS = 11;
|
|
|
|
enum class IRQ : u32
|
|
{
|
|
VBLANK = 0, // IRQ0 - VBLANK
|
|
GPU = 1, // IRQ1 - GPU via GP0(1Fh)
|
|
CDROM = 2, // IRQ2 - CDROM
|
|
DMA = 3, // IRQ3 - DMA
|
|
TMR0 = 4, // IRQ4 - TMR0 - Sysclk or Dotclk
|
|
TMR1 = 5, // IRQ5 - TMR1 - Sysclk Hblank
|
|
TMR2 = 6, // IRQ6 - TMR2 - Sysclk or Sysclk / 8
|
|
IRQ7 = 7, // IRQ7 - Controller and Memory Card Byte Received
|
|
SIO = 8, // IRQ8 - SIO
|
|
SPU = 9, // IRQ9 - SPU
|
|
IRQ10 = 10 // IRQ10 - Lightpen interrupt, PIO
|
|
};
|
|
|
|
void Initialize();
|
|
void Shutdown();
|
|
void Reset();
|
|
bool DoState(StateWrapper& sw);
|
|
|
|
// Should mirror CPU state.
|
|
bool GetIRQLineState();
|
|
|
|
// Interupts are edge-triggered, so if it is masked when TriggerInterrupt() is called, it will be lost.
|
|
void InterruptRequest(IRQ irq);
|
|
|
|
// I/O
|
|
u32 ReadRegister(u32 offset);
|
|
void WriteRegister(u32 offset, u32 value);
|
|
|
|
} // namespace InterruptController
|