mirror of
https://github.com/ProgramSnail/Lama.git
synced 2025-12-07 23:38:47 +00:00
interpreter fixes
This commit is contained in:
parent
b25d441287
commit
73d3fbc388
5 changed files with 29 additions and 22 deletions
|
|
@ -596,7 +596,7 @@ void print_file(const Bytefile &bf, std::ostream &out) {
|
|||
|
||||
while (true) {
|
||||
out << std::setfill('0') << std::setw(8) << std::hex << ip - bf.code_ptr
|
||||
<< ": ";
|
||||
<< ": " << std::dec;
|
||||
const auto [cmd, l] = parse_command(&ip, &bf, out);
|
||||
out << '\n';
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue