typo in format string
This commit is contained in:
parent
11aefffe77
commit
73f2200bc3
1 changed files with 1 additions and 1 deletions
|
@ -31,7 +31,7 @@ std::optional<std::string> breakpoint_memory::is_triggered() const
|
|||
if (it == values.end())
|
||||
return { };
|
||||
|
||||
return format("MEM%c%c[%08a]=%06o", word_mode == wm_byte ? 'B' : 'W', is_virtual ? 'V' : 'P', addr, v);
|
||||
return format("MEM%c%c[%08o]=%06o", word_mode == wm_byte ? 'B' : 'W', is_virtual ? 'V' : 'P', addr, v);
|
||||
}
|
||||
|
||||
std::pair<breakpoint_memory *, std::optional<std::string> > breakpoint_memory::parse(bus *const b, const std::string & in)
|
||||
|
|
Loading…
Add table
Reference in a new issue