mirror of
https://github.com/azahar-emu/dynarmic
synced 2025-11-07 07:29:59 +01:00
ir/basic_block: Add missing U16 immediate type to DumpBlock
This commit is contained in:
parent
5503ff28c3
commit
be354dbfd0
@ -172,6 +172,8 @@ std::string DumpBlock(const IR::Block& block) {
|
||||
return fmt::format("#{}", arg.GetU1() ? '1' : '0');
|
||||
case Type::U8:
|
||||
return fmt::format("#{}", arg.GetU8());
|
||||
case Type::U16:
|
||||
return fmt::format("#{:#x}", arg.GetU16());
|
||||
case Type::U32:
|
||||
return fmt::format("#{:#x}", arg.GetU32());
|
||||
case Type::U64:
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user