summaryrefslogtreecommitdiffstatshomepage
path: root/src/devices/cpu/i386/i386dasm.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/devices/cpu/i386/i386dasm.h')
-rw-r--r--src/devices/cpu/i386/i386dasm.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/devices/cpu/i386/i386dasm.h b/src/devices/cpu/i386/i386dasm.h
index 25f5ec0d4d6..551a077d9ca 100644
--- a/src/devices/cpu/i386/i386dasm.h
+++ b/src/devices/cpu/i386/i386dasm.h
@@ -201,10 +201,10 @@ private:
inline uint16_t FETCHD16(offs_t base_pc, offs_t &pc, const data_buffer &opcodes);
inline uint32_t FETCHD32(offs_t base_pc, offs_t &pc, const data_buffer &opcodes);
- char *hexstring(uint32_t value, int digits);
- char *hexstring64(uint32_t lo, uint32_t hi);
- char *hexstringpc(uint64_t pc);
- char *shexstring(uint32_t value, int digits, bool always);
+ static char *hexstring(uint32_t value, int digits);
+ static char *hexstring64(uint32_t lo, uint32_t hi);
+ std::string hexstringpc(uint64_t pc);
+ static std::string shexstring(uint32_t value, int digits, bool always);
void handle_sib_byte(std::ostream &stream, uint8_t mod, offs_t base_pc, offs_t &pc, const data_buffer &opcodes);
void handle_modrm(std::ostream &stream, offs_t base_pc, offs_t &pc, const data_buffer &opcodes);
void handle_modrm(std::string &buffer, offs_t base_pc, offs_t &pc, const data_buffer &opcodes);