summaryrefslogtreecommitdiff
path: root/demo/source/main.c
diff options
context:
space:
mode:
Diffstat (limited to 'demo/source/main.c')
-rw-r--r--demo/source/main.c19
1 files changed, 0 insertions, 19 deletions
diff --git a/demo/source/main.c b/demo/source/main.c
deleted file mode 100644
index ca31e5c..0000000
--- a/demo/source/main.c
+++ /dev/null
@@ -1,19 +0,0 @@
-#include <agbx-demo.h>
-
-#include <ax/key.h>
-#include <ax/gfx.h>
-
-ax_err ax_main(void) {
- axd_dat dat;
- axd_initdat(&dat);
- axd_initgfx();
- bool const err = axd_loop(&dat);
- if (err) {
- for (ax_i01 px = 0x0u;px != 0x9600u;++px) {
- ax_plot1(dat.vaddr,px,dat.col);
- axd_chgcol(&dat,0x1u);
- }
- return ax_err_max;
- }
- return ax_err_ok;
-}