Use the new MMU_INDEX() helper to specify the index of the CPUTLB which should be used. Additionally, in a follow-up patch this helper allows then to optimize the tcg code generation.
Signed-off-by: Helge Deller <del...@gmx.de> --- target/avr/cpu.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/target/avr/cpu.h b/target/avr/cpu.h index 7225174668..8b5916d243 100644 --- a/target/avr/cpu.h +++ b/target/avr/cpu.h @@ -40,8 +40,8 @@ * ST/LD instructions access data space * LPM/SPM and instruction fetching access code memory space */ -#define MMU_CODE_IDX 0 -#define MMU_DATA_IDX 1 +#define MMU_CODE_IDX MMU_INDEX(0) +#define MMU_DATA_IDX MMU_INDEX(1) #define EXCP_RESET 1 #define EXCP_INT(n) (EXCP_RESET + (n) + 1) -- 2.41.0