mirror of
https://github.com/beefytech/Beef.git
synced 2025-06-10 04:22:20 +02:00
Comptime debugging
This commit is contained in:
parent
bbb97d1490
commit
ff2e40e3bf
40 changed files with 6213 additions and 443 deletions
|
@ -27,6 +27,14 @@ String Beefy::EncodeDataPtr(uint32 addr, bool doPrefix)
|
|||
return StrFormat("%08X", addr);
|
||||
}
|
||||
|
||||
String Beefy::EncodeDataPtr(int addr, bool doPrefix)
|
||||
{
|
||||
if (doPrefix)
|
||||
return StrFormat("0x%08X", addr);
|
||||
else
|
||||
return StrFormat("%08X", addr);
|
||||
}
|
||||
|
||||
String Beefy::EncodeDataPtr(uint64 addr, bool doPrefix)
|
||||
{
|
||||
if (doPrefix)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue