diff options
author | UnavailableDev <ggwildplay@gmail.com> | 2023-04-04 14:34:03 +0200 |
---|---|---|
committer | UnavailableDev <ggwildplay@gmail.com> | 2023-04-04 14:34:03 +0200 |
commit | abfb6d3667e0c1955f09636ed72e48ed17129c84 (patch) | |
tree | 2245e26fe38e00c194fb9db5d53947c6572b7851 /src/stm32/setup.c | |
parent | b125ec41bfc18c9beb652cff1a58e567304c9c32 (diff) | |
parent | 9df9b163852cd5fd2462e1dec25ad4b00ca12a8c (diff) |
Merge branch 'tilemap-build-system' into dev
Diffstat (limited to 'src/stm32/setup.c')
-rw-r--r-- | src/stm32/setup.c | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/src/stm32/setup.c b/src/stm32/setup.c index 2c3552b..2102347 100644 --- a/src/stm32/setup.c +++ b/src/stm32/setup.c @@ -8,6 +8,10 @@ #include "main.h" #include "setup.h" #include "ppu/ppu.h" +#include "tilemap.h" + +// hex(0x0803_ffff - 0xd000 + 1) (stm32f091rc rm0091 table 5, flash memory organization) +uint32_t* g_hh_tilemap_rom = 0x08033000; UART_HandleTypeDef huart2 = { .Instance = USART2, |