From 36c04e7b000035086b2e2b8020a2337c5c2fa390 Mon Sep 17 00:00:00 2001 From: lonkaars Date: Fri, 24 Feb 2023 15:05:52 +0100 Subject: desktop compilation options in makefile --- src/main.c | 19 +++++++++---------- 1 file changed, 9 insertions(+), 10 deletions(-) (limited to 'src/main.c') diff --git a/src/main.c b/src/main.c index 910d2dd..1b8cdba 100644 --- a/src/main.c +++ b/src/main.c @@ -1,6 +1,5 @@ -#include +#include #include -#include #include "ppu/ppu.h" #include "ppu/consts.h" @@ -16,17 +15,17 @@ hh_s_ppu_loc_sprite* hh_debug_circle_sprite() { } int main() { - hh_ppu_init(); + // hh_ppu_init(); - hh_ppu_update_aux((hh_s_ppu_loc_aux) { - .bg_shift_x = 0, - .bg_shift_y = 0, - .fg_fetch = 0, - .sysreset = 0, - }); + // hh_ppu_update_aux((hh_s_ppu_loc_aux) { + // .bg_shift_x = 0, + // .bg_shift_y = 0, + // .fg_fetch = 0, + // .sysreset = 0, + // }); hh_s_ppu_loc_sprite* sprite = hh_debug_circle_sprite(); - hh_ppu_update_sprite(0, *sprite); + // hh_ppu_update_sprite(0, *sprite); free(sprite); while (1); -- cgit v1.2.3