diff options
author | Michael Pavone <pavone@retrodev.com> | 2017-03-29 00:29:44 -0700 |
---|---|---|
committer | Michael Pavone <pavone@retrodev.com> | 2017-03-29 00:29:44 -0700 |
commit | 60a2e7bf23dc0d4746807d565bfabe9a8c9fe417 (patch) | |
tree | c06868f5b36beb696d92400de632b496a86f4c80 /util.c | |
parent | ee4dc11142649262163a85aad31775a02031b818 (diff) |
Allow games to be specified in ROM DB via sha1 instead of product ID. Added a new ROM DB memory map device type fixed for emulating simple fixed value copy protection registers. Used those two features to support Ya Se Chuan Shuo via a ROM DB entry.
Diffstat (limited to 'util.c')
-rw-r--r-- | util.c | 15 |
1 files changed, 15 insertions, 0 deletions
@@ -189,6 +189,21 @@ char * split_keyval(char * text) return text+1; } +void bin_to_hex(uint8_t *output, uint8_t *input, uint64_t size) +{ + while (size) + { + uint8_t digit = *input >> 4; + digit += digit > 9 ? 'a' - 0xa : '0'; + *(output++) = digit; + digit = *(input++) & 0xF; + digit += digit > 9 ? 'a' - 0xa : '0'; + *(output++) = digit; + size--; + } + *(output++) = 0; +} + char is_path_sep(char c) { #ifdef _WIN32 |