diff options
| author | 2024-02-26 08:13:25 -0500 | |
|---|---|---|
| committer | 2024-02-26 08:14:15 -0500 | |
| commit | 3e4ed5d6fe49037b39c5c13e611ba17fc3d4bc05 (patch) | |
| tree | 4185f48f0eacaad71d55ad776f415652c5939cfd /src/emu/debug/debugcpu.cpp | |
| parent | 114300659fb04ba789b18126ff2235d9dc2aa91a (diff) | |
coreutil.h: Eliminate core_crc32 wrapper function in favor of util::crc32_creator
Diffstat (limited to 'src/emu/debug/debugcpu.cpp')
| -rw-r--r-- | src/emu/debug/debugcpu.cpp | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/src/emu/debug/debugcpu.cpp b/src/emu/debug/debugcpu.cpp index 5c5a186e2aa..fd0093bd283 100644 --- a/src/emu/debug/debugcpu.cpp +++ b/src/emu/debug/debugcpu.cpp @@ -25,7 +25,6 @@ #include "uiinput.h" #include "corestr.h" -#include "coreutil.h" #include "osdepend.h" #include "xmlfile.h" @@ -1727,7 +1726,7 @@ u32 device_debug::compute_opcode_crc32(offs_t pc) const buffer.data_get(pc, dasmresult & util::disasm_interface::LENGTHMASK, true, opbuf); // return a CRC of the exact count of opcode bytes - return core_crc32(0, &opbuf[0], opbuf.size()); + return util::crc32_creator::simple(&opbuf[0], opbuf.size()); } |
