aboutsummaryrefslogtreecommitdiff
path: root/src/ppu/ppu.h
diff options
context:
space:
mode:
authorlonkaars <loek@pipeframe.xyz>2023-03-22 19:58:15 +0100
committerlonkaars <loek@pipeframe.xyz>2023-03-22 19:58:15 +0100
commitf4295898e04de8ef2878aac1774dc7ccda501317 (patch)
treef0d16d2cbf693c53caa4265c8f9d20b12372b358 /src/ppu/ppu.h
parent1bb8b7eda56de815bcfc9c6f8b07df399cf400a0 (diff)
load static/tilemap.bin in ppusim
Diffstat (limited to 'src/ppu/ppu.h')
-rw-r--r--src/ppu/ppu.h3
1 files changed, 3 insertions, 0 deletions
diff --git a/src/ppu/ppu.h b/src/ppu/ppu.h
index 75d97c1..46b58af 100644
--- a/src/ppu/ppu.h
+++ b/src/ppu/ppu.h
@@ -23,3 +23,6 @@ void hh_ppu_update_palette_table(hh_ppu_loc_palette_table_t table);
void hh_ppu_update_palette(unsigned palette_index, hh_ppu_loc_palette_data_t palette);
/** @brief update single color in palette */
void hh_ppu_update_color(unsigned palette_index, unsigned color_index, hh_ppu_rgb_color_t color);
+
+/** @brief copy g_hh_tilemap_rom into PPU vram */
+void hh_ppu_load_tilemap();