aboutsummaryrefslogtreecommitdiff
path: root/src/main.c
diff options
context:
space:
mode:
authorlonkaars <loek@pipeframe.xyz>2023-04-04 20:44:15 +0200
committerlonkaars <loek@pipeframe.xyz>2023-04-04 20:44:15 +0200
commit4881723cf765fbd7bad2a1f08baf5897a7425401 (patch)
tree96b828de8f27b8bb39a9c3f0aa31166552f99b41 /src/main.c
parent47bf3627e4f44fa5e8095af0f70d5fccdb0f8cae (diff)
WIP DMA SPI TX
Diffstat (limited to 'src/main.c')
-rw-r--r--src/main.c3
1 files changed, 1 insertions, 2 deletions
diff --git a/src/main.c b/src/main.c
index 67490ab..3cb045d 100644
--- a/src/main.c
+++ b/src/main.c
@@ -3,7 +3,6 @@
#include "main.h"
#include "demo.h"
#include "ppu/ppu.h"
-#include "ppu/internals.h"
bool g_hh_run = true;
volatile unsigned long g_hh_vcount;
@@ -12,7 +11,7 @@ volatile unsigned short g_hh_hcount;
void hh_ppu_vblank_interrupt() {
static unsigned long frame = 0;
hh_demo_loop(frame++);
- hh_ppu_vram_flush();
+ hh_ppu_flush();
}
int main() {