diff options
author | 2015-08-22 18:25:47 +0200 | |
---|---|---|
committer | 2015-08-22 18:25:47 +0200 | |
commit | 8c3e43d56b0c21bffc348cbc10d6451eb1f879e9 (patch) | |
tree | 82350cc59ef7cb63f2f08d1a6da1546d86925b09 /src/mess/includes | |
parent | a726125d5afcc386627b65d5bdffc0122cf884b5 (diff) |
some tispeak vfd fixes (still need to fix DP segment in snmath)
Diffstat (limited to 'src/mess/includes')
-rw-r--r-- | src/mess/includes/hh_tms1k.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/src/mess/includes/hh_tms1k.h b/src/mess/includes/hh_tms1k.h index 2d4149fcee4..edcea970b64 100644 --- a/src/mess/includes/hh_tms1k.h +++ b/src/mess/includes/hh_tms1k.h @@ -49,6 +49,9 @@ public: int m_display_maxy; // display matrix number of rows int m_display_maxx; // display matrix number of columns (max 31 for now) + UINT32 m_grid; // VFD current row data + UINT32 m_plate; // VFD current column data + UINT32 m_display_state[0x20]; // display matrix rows data (last bit is used for always-on) UINT16 m_display_segmask[0x20]; // if not 0, display matrix row is a digit, mask indicates connected segments UINT32 m_display_cache[0x20]; // (internal use) |