diff options
Diffstat (limited to 'target/m68k/monitor.c')
-rw-r--r-- | target/m68k/monitor.c | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/target/m68k/monitor.c b/target/m68k/monitor.c index 2b83e3bc0d..a20af6b09c 100644 --- a/target/m68k/monitor.c +++ b/target/m68k/monitor.c @@ -33,6 +33,10 @@ static const MonitorDef monitor_defs[] = { { "isp", offsetof(CPUM68KState, sp[2]) }, { "urp", offsetof(CPUM68KState, mmu.urp) }, { "srp", offsetof(CPUM68KState, mmu.srp) }, + { "dttr0", offsetof(CPUM68KState, mmu.ttr[M68K_DTTR0]) }, + { "dttr1", offsetof(CPUM68KState, mmu.ttr[M68K_DTTR1]) }, + { "ittr0", offsetof(CPUM68KState, mmu.ttr[M68K_ITTR0]) }, + { "ittr1", offsetof(CPUM68KState, mmu.ttr[M68K_ITTR1]) }, { NULL }, }; |