aboutsummaryrefslogtreecommitdiff
path: root/src/ppu/ppu.h
diff options
context:
space:
mode:
authorUnavailableDev <ggwildplay@gmail.com>2023-04-04 14:34:03 +0200
committerUnavailableDev <ggwildplay@gmail.com>2023-04-04 14:34:03 +0200
commitabfb6d3667e0c1955f09636ed72e48ed17129c84 (patch)
tree2245e26fe38e00c194fb9db5d53947c6572b7851 /src/ppu/ppu.h
parentb125ec41bfc18c9beb652cff1a58e567304c9c32 (diff)
parent9df9b163852cd5fd2462e1dec25ad4b00ca12a8c (diff)
Merge branch 'tilemap-build-system' into dev
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();