aboutsummaryrefslogtreecommitdiff
path: root/src/ds.c
blob: 71c595a565b17c766329d9299ded5df7200e4ab4 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
#include "main.h"
#include "ppu/ppu.h"
#include "demo.h"

void hh_setup() {
	hh_ppu_init();
	// hh_demo_setup();
}

void hh_exit() {
	g_hh_run = false;

	hh_ppu_deinit();
}