diff options
author | Laurent Vivier <laurent@vivier.eu> | 2018-01-18 20:38:44 +0100 |
---|---|---|
committer | Laurent Vivier <laurent@vivier.eu> | 2018-01-25 16:02:24 +0100 |
commit | 5fa9f1f28321f7268e68e58cff8c61a2ab817f91 (patch) | |
tree | 5aa6b109d2d22fc37ab9738fa44c07ed62410976 /target/m68k/monitor.c | |
parent | 54e1e0b5b5ce4fc76335b1fbbf09cb8fdd5ab89d (diff) | |
download | qemu-5fa9f1f28321f7268e68e58cff8c61a2ab817f91.zip qemu-5fa9f1f28321f7268e68e58cff8c61a2ab817f91.tar.gz qemu-5fa9f1f28321f7268e68e58cff8c61a2ab817f91.tar.bz2 |
target/m68k: add moves
and introduce SFC and DFC control registers.
Signed-off-by: Laurent Vivier <laurent@vivier.eu>
Reviewed-by: Richard Henderson <richard.henderson@linaro.org>
Message-Id: <20180118193846.24953-6-laurent@vivier.eu>
Diffstat (limited to 'target/m68k/monitor.c')
-rw-r--r-- | target/m68k/monitor.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/target/m68k/monitor.c b/target/m68k/monitor.c index a20af6b..c31feb4 100644 --- a/target/m68k/monitor.c +++ b/target/m68k/monitor.c @@ -31,6 +31,8 @@ static const MonitorDef monitor_defs[] = { { "ssp", offsetof(CPUM68KState, sp[0]) }, { "usp", offsetof(CPUM68KState, sp[1]) }, { "isp", offsetof(CPUM68KState, sp[2]) }, + { "sfc", offsetof(CPUM68KState, sfc) }, + { "dfc", offsetof(CPUM68KState, dfc) }, { "urp", offsetof(CPUM68KState, mmu.urp) }, { "srp", offsetof(CPUM68KState, mmu.srp) }, { "dttr0", offsetof(CPUM68KState, mmu.ttr[M68K_DTTR0]) }, |