aboutsummaryrefslogtreecommitdiff
path: root/src/main.c
diff options
context:
space:
mode:
authorJuan J. Martinez <jjm@usebox.net>2023-06-13 23:29:50 +0100
committerJuan J. Martinez <jjm@usebox.net>2023-06-13 23:29:50 +0100
commit04af7fbd7891b4be883be8231d8fc0ae11a763e7 (patch)
treedadb4bd75c59335ba68ec157bea8d3460351fa8b /src/main.c
parentd6cff5d9a6056a4cd727f3e9dd6301a78169d246 (diff)
downloadgold-mine-run-04af7fbd7891b4be883be8231d8fc0ae11a763e7.tar.gz
gold-mine-run-04af7fbd7891b4be883be8231d8fc0ae11a763e7.zip
Map renderer
Diffstat (limited to 'src/main.c')
-rw-r--r--src/main.c4
1 files changed, 3 insertions, 1 deletions
diff --git a/src/main.c b/src/main.c
index be248d3..9985159 100644
--- a/src/main.c
+++ b/src/main.c
@@ -7,6 +7,7 @@
#include "keyb.h"
#include "vga.h"
#include "text.h"
+#include "map.h"
#include "data.h"
/* disable paging because our int handlers are written in C */
@@ -36,7 +37,8 @@ int main(int argc, char *argv[])
blit_erase(0);
wait_vsync();
- put_text(10, 10, "TESTING! 1234567890* ()^_");
+ map_init(binary_stage_start);
+ map_render();
blit_update();