From bb728e39b2b818fc7067169ae5d1980c72e18bae Mon Sep 17 00:00:00 2001 From: folkert van heusden Date: Sat, 11 May 2024 17:15:33 +0200 Subject: [PATCH] ESP32 compile fix --- ESP32/console_esp32.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ESP32/console_esp32.cpp b/ESP32/console_esp32.cpp index a925f97..2adb8c2 100644 --- a/ESP32/console_esp32.cpp +++ b/ESP32/console_esp32.cpp @@ -114,7 +114,7 @@ void console_esp32::panel_update_thread() int run_mode = current_PSW >> 14; uint16_t current_PC = c->getPC(); - uint32_t full_addr = b->getMMU()->calculate_physical_address(c, run_mode, current_PC, false, false, true, i_space); + uint32_t full_addr = b->getMMU()->calculate_physical_address(c, run_mode, current_PC, false, false, i_space); uint16_t current_instr = b->read_word(current_PC);