summaryrefslogtreecommitdiffstatshomepage
path: root/src/emu/debug/dvstate.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/emu/debug/dvstate.h')
-rw-r--r--src/emu/debug/dvstate.h34
1 files changed, 17 insertions, 17 deletions
diff --git a/src/emu/debug/dvstate.h b/src/emu/debug/dvstate.h
index 406ce2c35c6..f47f51c5141 100644
--- a/src/emu/debug/dvstate.h
+++ b/src/emu/debug/dvstate.h
@@ -61,9 +61,9 @@ public:
private:
// internal state
- device_t & m_device; // underlying device
- device_state_interface *m_stateintf; // state interface
- device_execute_interface *m_execintf; // execution interface
+ device_t & m_device; // underlying device
+ device_state_interface *m_stateintf; // state interface
+ device_execute_interface *m_execintf; // execution interface
};
@@ -87,12 +87,12 @@ private:
{
state_item(int index, const char *name, UINT8 valuechars);
- state_item * m_next; // next item
- UINT64 m_lastval; // last value
- UINT64 m_currval; // current value
- int m_index; // index
- UINT8 m_vallen; // number of value chars
- astring m_symbol; // symbol
+ state_item * m_next; // next item
+ UINT64 m_lastval; // last value
+ UINT64 m_currval; // current value
+ int m_index; // index
+ UINT8 m_vallen; // number of value chars
+ astring m_symbol; // symbol
};
// internal helpers
@@ -101,16 +101,16 @@ private:
void recompute();
// internal state
- int m_divider; // dividing column
- UINT64 m_last_update; // execution counter at last update
- state_item * m_state_list; // state data
+ int m_divider; // dividing column
+ UINT64 m_last_update; // execution counter at last update
+ state_item * m_state_list; // state data
// constants
- static const int REG_DIVIDER = -10;
- static const int REG_CYCLES = -11;
- static const int REG_BEAMX = -12;
- static const int REG_BEAMY = -13;
- static const int REG_FRAME = -14;
+ static const int REG_DIVIDER = -10;
+ static const int REG_CYCLES = -11;
+ static const int REG_BEAMX = -12;
+ static const int REG_BEAMY = -13;
+ static const int REG_FRAME = -14;
};