summaryrefslogtreecommitdiffstatshomepage
path: root/src/emu/debug/dvstate.cpp
diff options
context:
space:
mode:
author Vas Crabb <vas@vastheman.com>2016-11-19 05:35:54 +1100
committer Vas Crabb <vas@vastheman.com>2016-11-19 05:38:48 +1100
commit8179a84458204a5e767446fcf7d10f032a40fd0c (patch)
tree16105e1667f811dcb24dbf0fc255166cb06df5c2 /src/emu/debug/dvstate.cpp
parent1b489fe83034072149fb0637b20c7ba57dc72a7a (diff)
Introduce u8/u16/u32/u64/s8/s16/s32/s64
* New abbreviated types are in osd and util namespaces, and also in global namespace for things that #include "emu.h" * Get rid of import of cstdint types to global namespace (C99 does this anyway) * Remove the cstdint types from everything in emu * Get rid of U64/S64 macros * Fix a bug in dps16 caused by incorrect use of macro * Fix debugcon not checking for "do " prefix case-insensitively * Fix a lot of messed up tabulation * More constexpr * Fix up many __names
Diffstat (limited to 'src/emu/debug/dvstate.cpp')
-rw-r--r--src/emu/debug/dvstate.cpp22
1 files changed, 11 insertions, 11 deletions
diff --git a/src/emu/debug/dvstate.cpp b/src/emu/debug/dvstate.cpp
index fe3ea7d8082..a7a2215bd9e 100644
--- a/src/emu/debug/dvstate.cpp
+++ b/src/emu/debug/dvstate.cpp
@@ -142,7 +142,7 @@ void debug_view_state::recompute()
// count the entries and determine the maximum tag and value sizes
std::size_t count = 0;
std::size_t maxtaglen = 0;
- uint8_t maxvallen = 0;
+ u8 maxvallen = 0;
for (auto const &item : m_state_list)
{
count++;
@@ -152,8 +152,8 @@ void debug_view_state::recompute()
// set the current divider and total cols
m_divider = unsigned(1U + maxtaglen + 1U);
- m_total.x = uint32_t(1U + maxtaglen + 2U + maxvallen + 1U);
- m_total.y = uint32_t(count);
+ m_total.x = u32(1U + maxtaglen + 2U + maxvallen + 1U);
+ m_total.y = u32(count);
m_topleft.x = 0;
m_topleft.y = 0;
@@ -187,17 +187,17 @@ void debug_view_state::view_update()
// get cycle count if we have an execute interface
debug_view_state_source const &source(downcast<debug_view_state_source const &>(*m_source));
- uint64_t const total_cycles(source.m_execintf ? source.m_execintf->total_cycles() : 0);
+ u64 const total_cycles(source.m_execintf ? source.m_execintf->total_cycles() : 0);
bool const cycles_changed(m_last_update != total_cycles);
// loop over rows
auto it(m_state_list.begin());
screen_device const *const screen(machine().first_screen());
debug_view_char *dest(&m_viewdata[0]);
- for (int32_t index = 0, limit = m_topleft.y + m_visible.y; (index < limit) || (it != m_state_list.end()); ++index)
+ for (s32 index = 0, limit = m_topleft.y + m_visible.y; (index < limit) || (it != m_state_list.end()); ++index)
{
bool const visible((index >= m_topleft.y) && (index < limit));
- uint32_t col(0);
+ u32 col(0);
if (it != m_state_list.end())
{
@@ -254,11 +254,11 @@ void debug_view_state::view_update()
if (visible)
{
// see if we changed
- const uint8_t attrib(curitem.changed() ? DCA_CHANGED: DCA_NORMAL);
+ const u8 attrib(curitem.changed() ? DCA_CHANGED: DCA_NORMAL);
// build up a string
char temp[256];
- uint32_t len(0);
+ u32 len(0);
if (curitem.m_symbol.length() < (m_divider - 1))
{
memset(&temp[len], ' ', m_divider - 1 - curitem.m_symbol.length());
@@ -278,7 +278,7 @@ void debug_view_state::view_update()
temp[len] = 0;
// copy data
- for (uint32_t effcol = m_topleft.x; (col < m_visible.x) && (effcol < len); ++dest, ++col)
+ for (u32 effcol = m_topleft.x; (col < m_visible.x) && (effcol < len); ++dest, ++col)
{
dest->byte = temp[effcol++];
dest->attrib = attrib | ((effcol <= m_divider) ? DCA_ANCILLARY : DCA_NORMAL);
@@ -305,7 +305,7 @@ void debug_view_state::view_update()
// state_item - constructor
//-------------------------------------------------
-debug_view_state::state_item::state_item(int index, const char *name, uint8_t valuechars)
+debug_view_state::state_item::state_item(int index, const char *name, u8 valuechars)
: m_lastval(0)
, m_currval(0)
, m_index(index)
@@ -319,7 +319,7 @@ debug_view_state::state_item::state_item(int index, const char *name, uint8_t va
// update - update value and save previous
//-------------------------------------------------
-void debug_view_state::state_item::update(uint64_t newval, bool save)
+void debug_view_state::state_item::update(u64 newval, bool save)
{
if (save)
m_lastval = m_currval;