aboutsummaryrefslogtreecommitdiff
path: root/src/ds.c
diff options
context:
space:
mode:
authorUnavailableDev <69792062+UnavailableDev@users.noreply.github.com>2023-03-10 14:01:32 +0100
committerGitHub <noreply@github.com>2023-03-10 14:01:32 +0100
commit6d82f9e3d165e0200bed2f2784a1183f47b37fa3 (patch)
treea8ce1dbdc5c29fb7001b71f1bc5003055d303fa0 /src/ds.c
parent586aded2dddf2e6101d2709e42bceccadb50e8a1 (diff)
parentc37397234534e9888dfeed9b1728c46646c33b58 (diff)
Merge branch 'lonkaars:dev' into dev
Diffstat (limited to 'src/ds.c')
-rw-r--r--src/ds.c15
1 files changed, 15 insertions, 0 deletions
diff --git a/src/ds.c b/src/ds.c
new file mode 100644
index 0000000..24ef58f
--- /dev/null
+++ b/src/ds.c
@@ -0,0 +1,15 @@
+#include "demo.h"
+#include "main.h"
+#include "ppu/ppu.h"
+
+void hh_setup() {
+ hh_ppu_init();
+
+ hh_demo_setup();
+}
+
+void hh_exit() {
+ g_hh_run = false;
+
+ hh_ppu_deinit();
+}