stm32h7: define correct DRAM origin for plugins

Change-Id: I7fab9da0e99f328ce602607057f52620812476a8
This commit is contained in:
Aidan MacDonald 2026-02-04 16:51:54 +00:00
parent 1a2235fb18
commit 7b91b81e49

View file

@ -196,6 +196,12 @@ OUTPUT_FORMAT(elf32-littlemips)
#define IRAM DRAM
#define IRAMSIZE 0
#elif CONFIG_CPU == STM32H743
#include "cpu.h"
#define DRAMORIG STM32_SDRAM1_BASE
#define IRAM DRAM
#define IRAMSIZE 0
#else
#define DRAMORIG 0x09000000
#endif