summaryrefslogtreecommitdiffstatshomepage
path: root/src/emu/video/huc6270.h
diff options
context:
space:
mode:
author Fabio Priuli <etabeta78@users.noreply.github.com>2013-05-26 13:12:30 +0000
committer Fabio Priuli <etabeta78@users.noreply.github.com>2013-05-26 13:12:30 +0000
commitcc7f8be8eaca5de684e0e6f095d49997aa59dc49 (patch)
tree780dda95bc86c51442e0015594931008f8cb058c /src/emu/video/huc6270.h
parenteab6a13f1c840331e04f2ddc3e34b3fb85a8e034 (diff)
(MESS) minor improvements to pce save state reliability. not there yet + added saving for a crvision variable. nw
Diffstat (limited to 'src/emu/video/huc6270.h')
-rw-r--r--src/emu/video/huc6270.h29
1 files changed, 15 insertions, 14 deletions
diff --git a/src/emu/video/huc6270.h b/src/emu/video/huc6270.h
index cae500063c7..3ca51391d0d 100644
--- a/src/emu/video/huc6270.h
+++ b/src/emu/video/huc6270.h
@@ -10,20 +10,6 @@
#include "emu.h"
-enum huc6270_v_state {
- HUC6270_VSW,
- HUC6270_VDS,
- HUC6270_VDW,
- HUC6270_VCR
-};
-
-enum huc6270_h_state {
- HUC6270_HDS,
- HUC6270_HDW,
- HUC6270_HDE,
- HUC6270_HSW
-};
-
#define MCFG_HUC6270_ADD( _tag, _intrf ) \
MCFG_DEVICE_ADD( _tag, HUC6270, 0 ) \
@@ -74,6 +60,21 @@ protected:
inline void next_horz_state();
private:
+
+ enum huc6270_v_state {
+ HUC6270_VSW,
+ HUC6270_VDS,
+ HUC6270_VDW,
+ HUC6270_VCR
+ };
+
+ enum huc6270_h_state {
+ HUC6270_HDS,
+ HUC6270_HDW,
+ HUC6270_HDE,
+ HUC6270_HSW
+ };
+
/* Callbacks */
devcb_resolved_write_line m_irq_changed;