summaryrefslogtreecommitdiffstatshomepage
path: root/src/emu/didisasm.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/emu/didisasm.h')
-rw-r--r--src/emu/didisasm.h12
1 files changed, 6 insertions, 6 deletions
diff --git a/src/emu/didisasm.h b/src/emu/didisasm.h
index c96fe3b9159..edd56b3352f 100644
--- a/src/emu/didisasm.h
+++ b/src/emu/didisasm.h
@@ -23,12 +23,12 @@
//**************************************************************************
// Disassembler constants
-const u32 DASMFLAG_SUPPORTED = 0x80000000; // are disassembly flags supported?
-const u32 DASMFLAG_STEP_OUT = 0x40000000; // this instruction should be the end of a step out sequence
-const u32 DASMFLAG_STEP_OVER = 0x20000000; // this instruction should be stepped over by setting a breakpoint afterwards
-const u32 DASMFLAG_OVERINSTMASK = 0x18000000; // number of extra instructions to skip when stepping over
-const u32 DASMFLAG_OVERINSTSHIFT = 27; // bits to shift after masking to get the value
-const u32 DASMFLAG_LENGTHMASK = 0x0000ffff; // the low 16-bits contain the actual length
+constexpr u32 DASMFLAG_SUPPORTED = 0x80000000; // are disassembly flags supported?
+constexpr u32 DASMFLAG_STEP_OUT = 0x40000000; // this instruction should be the end of a step out sequence
+constexpr u32 DASMFLAG_STEP_OVER = 0x20000000; // this instruction should be stepped over by setting a breakpoint afterwards
+constexpr u32 DASMFLAG_OVERINSTMASK = 0x18000000; // number of extra instructions to skip when stepping over
+constexpr u32 DASMFLAG_OVERINSTSHIFT = 27; // bits to shift after masking to get the value
+constexpr u32 DASMFLAG_LENGTHMASK = 0x0000ffff; // the low 16-bits contain the actual length