1
0
mirror of https://github.com/mist-devel/mist-firmware.git synced 2026-04-26 04:17:40 +00:00

menu-minimig: show maximum 8MB FAST memory for 68EC020 CPU

This commit is contained in:
Gerald Schnabel
2025-03-22 11:08:16 +01:00
parent 879e837d36
commit 8c4e2b7754

View File

@@ -60,7 +60,7 @@ extern unsigned char menusub;
////////////////////////////
const char *config_memory_fast_txt()
{
if (!(((config.cpu & 0x02) == 0x02) && ((config.memory >> 4 & 0x03) == 0x03)))
if (!(((config.cpu & 0x03) == 0x03) && ((config.memory >> 4 & 0x03) == 0x03)))
return config_memory_fast_msg[config.memory >> 4 & 0x03];
else
return config_memory_fast_msg[(config.memory >> 4 & 0x03) + 1];