diff options
author | Juan J. Martinez <jjm@usebox.net> | 2023-06-13 23:29:50 +0100 |
---|---|---|
committer | Juan J. Martinez <jjm@usebox.net> | 2023-06-13 23:29:50 +0100 |
commit | 04af7fbd7891b4be883be8231d8fc0ae11a763e7 (patch) | |
tree | dadb4bd75c59335ba68ec157bea8d3460351fa8b /src/main.c | |
parent | d6cff5d9a6056a4cd727f3e9dd6301a78169d246 (diff) | |
download | gold-mine-run-04af7fbd7891b4be883be8231d8fc0ae11a763e7.tar.gz gold-mine-run-04af7fbd7891b4be883be8231d8fc0ae11a763e7.zip |
Map renderer
Diffstat (limited to 'src/main.c')
-rw-r--r-- | src/main.c | 4 |
1 files changed, 3 insertions, 1 deletions
@@ -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(); |