Make the Z80 disassembler a little more compatible with the C++ version.

Signed-off-by: Adrian Conlon <Adrian.conlon@gmail.com>
This commit is contained in:
Adrian Conlon 2019-11-02 17:28:09 +00:00
parent 0f2a69509b
commit 1c472fcb17
1 changed files with 2 additions and 0 deletions

View File

@ -55,6 +55,8 @@ namespace EightBit
+ $"B={b:x2} C={c:x2} "
+ $"D={d:x2} E={e:x2} "
+ $"H={h:x2} L={l:x2} "
+ $"IX={cpu.IX.Word:x4} "
+ $"IY={cpu.IY.Word:x4} "
+ $"I={i:x2} R={(byte)r:x2} "
+ $"IM={im} "
+ $"IFF1={(cpu.IFF1 ? 1 : 0)} "