Mesen-X/Utilities/HexUtilities.h

15 lines
260 B
C
Raw Normal View History

#pragma once
#include "stdafx.h"
class HexUtilities
{
private:
const static vector<string> _hexCache;
public:
static string ToHex(uint8_t addr);
static string ToHex(uint16_t addr);
static string ToHex(uint32_t addr);
static int FromHex(string hex);
};