From: Toni Wilen Date: Mon, 1 Jan 2024 16:46:36 +0000 (+0200) Subject: MMU table dump includes description valid state X-Git-Tag: 5200~105 X-Git-Url: https://git.unchartedbackwaters.co.uk/w/?a=commitdiff_plain;h=a3379ca2f408dcc0133e3c60ee8420aa7890479b;p=francis%2Fwinuae.git MMU table dump includes description valid state --- diff --git a/cpummu.cpp b/cpummu.cpp index 4123a5a2..292431a1 100644 --- a/cpummu.cpp +++ b/cpummu.cpp @@ -190,9 +190,9 @@ static void mmu_dump_table(const char * label, uaecptr root_ptr) uae_u8 cm, sp; cm = (odesc >> 5) & 3; sp = (odesc >> 7) & 1; - console_out_f(_T("%08x - %08x: %08x WP=%d S=%d CM=%d (%08x)\n"), + console_out_f(_T("%08x - %08x: %08x WP=%d S=%d CM=%d V=%d (%08x)\n"), startaddr, addr - 1, odesc & ~((1 << page_size) - 1), - (odesc & 4) ? 1 : 0, sp, cm, odesc); + (odesc & 4) ? 1 : 0, sp, cm, (odesc & 3) > 0, odesc); startaddr = addr; odesc = desc; }