mirror of
https://github.com/MoleskiCoder/EightBit.git
synced 2025-09-17 10:24:45 +00:00
Simplify register16_t usage a little.
Signed-off-by: Adrian Conlon <Adrian.conlon@gmail.com>
This commit is contained in:
@@ -33,9 +33,9 @@ std::string EightBit::Disassembler::state(Intel8080& cpu) {
|
||||
std::ostringstream output;
|
||||
|
||||
output
|
||||
<< "PC=" << hex(pc.word)
|
||||
<< "PC=" << pc
|
||||
<< " "
|
||||
<< "SP=" << hex(sp.word)
|
||||
<< "SP=" << sp
|
||||
<< " " << "A=" << hex(a) << " " << "F=" << flags(f)
|
||||
<< " " << "B=" << hex(b) << " " << "C=" << hex(c)
|
||||
<< " " << "D=" << hex(d) << " " << "E=" << hex(e)
|
||||
|
Reference in New Issue
Block a user