mirror of
https://github.com/RaySollium99/picodrive.git
synced 2025-09-05 15:27:46 -04:00
vdp fifo, another revision
This commit is contained in:
parent
25be5c52b0
commit
787a0af9dc
2 changed files with 120 additions and 104 deletions
|
@ -296,10 +296,9 @@ extern SH2 sh2s[2];
|
|||
// not part of real SR
|
||||
#define PVS_ACTIVE (1 << 16)
|
||||
#define PVS_VB2 (1 << 17) // ignores forced blanking
|
||||
#define PVS_CPUWR (1 << 18) // CPU hold by FIFO full
|
||||
#define PVS_CPURD (1 << 19) // CPU hold by FIFO full
|
||||
#define PVS_DMAPEND (1 << 20) // DMA operation waiting for start
|
||||
#define PVS_DMAFILL (1 << 21) // DMA fill is in progress
|
||||
#define PVS_CPUWR (1 << 18) // CPU write blocked by FIFO full
|
||||
#define PVS_CPURD (1 << 19) // CPU read blocked by FIFO not empty
|
||||
#define PVS_DMAFILL (1 << 20) // DMA fill is waiting for fill data
|
||||
|
||||
struct PicoVideo
|
||||
{
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue