mirror of
https://github.com/zoriya/ComSquare.git
synced 2026-06-07 03:34:55 +00:00
Showing the current PC in the disassembly view
This commit is contained in:
@@ -12,11 +12,17 @@
|
||||
|
||||
namespace ComSquare::Utility
|
||||
{
|
||||
std::string to_hex(uint8_t i);
|
||||
enum HexString {
|
||||
NoPrefix,
|
||||
AsmPrefix,
|
||||
StandardPrefix
|
||||
};
|
||||
|
||||
std::string to_hex(uint16_t i);
|
||||
std::string to_hex(uint8_t i, HexString prefix = StandardPrefix);
|
||||
|
||||
std::string to_hex(uint24_t i);
|
||||
std::string to_hex(uint16_t i, HexString prefix = StandardPrefix);
|
||||
|
||||
std::string to_hex(uint24_t i, HexString prefix = StandardPrefix);
|
||||
|
||||
std::string to_binary(uint8_t i);
|
||||
|
||||
|
||||
Reference in New Issue
Block a user