commit | 61e63d2886cae4d1ac8171353171f471c3e0331f | [log] [tgz] |
---|---|---|
author | Yuyang Huang <yuyanghuang@google.com> | Sun Feb 04 07:19:33 2024 +0900 |
committer | Yuyang Huang <yuyanghuang@google.com> | Sun Feb 04 07:23:39 2024 +0900 |
tree | 05c375d685be0bfc47b420391965954bb2e74223 | |
parent | 7dd27fadef7b0ea660a29b49d0617b5183b5d41d [diff] [blame] |
v5: insert space between immediates when disassembling DATA_OPCODE Test: TH Change-Id: I0bc2fc1f5ca51cbb4eaf3d1a3a46c13c592aab9b
diff --git a/disassembler.c b/disassembler.c index 3b9f105..601b9e6 100644 --- a/disassembler.c +++ b/disassembler.c
@@ -161,7 +161,7 @@ print_jump_target(*pc + imm, program_len); } else { print_opcode("data"); - bprintf("%d,", imm); + bprintf("%d, ", imm); uint32_t len = imm; while (len--) bprintf("%02x", program[(*pc)++]); }