aboutsummaryrefslogtreecommitdiff
path: root/src/stm32/main.c
diff options
context:
space:
mode:
authorlonkaars <loek@pipeframe.xyz>2023-05-29 16:08:20 +0200
committerlonkaars <loek@pipeframe.xyz>2023-05-29 16:08:20 +0200
commit5cf7922107da55380e0cbc9c26d518db76eaf3ed (patch)
tree0f2ade7fe180cbadba596637f08d4efa6e683a6a /src/stm32/main.c
parent151ef82382104cfef375d8c1d256d72cb61b16fd (diff)
???
Diffstat (limited to 'src/stm32/main.c')
-rw-r--r--src/stm32/main.c6
1 files changed, 5 insertions, 1 deletions
diff --git a/src/stm32/main.c b/src/stm32/main.c
index 181657c..78b166e 100644
--- a/src/stm32/main.c
+++ b/src/stm32/main.c
@@ -1,9 +1,13 @@
#include <stm32f0xx_hal.h>
#include "main.h"
+#include "demo.h"
+#include "ppu/ppu.h"
void hh_ppu_load_tilemap() {}
void hh_loop() {
- while(g_hh_run);
+ while (1) {
+ hh_ppu_vblank_interrupt();
+ }
}