summaryrefslogtreecommitdiffstatshomepage
path: root/src/devices/video/tms9927.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/devices/video/tms9927.h')
-rw-r--r--src/devices/video/tms9927.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/devices/video/tms9927.h b/src/devices/video/tms9927.h
index 4108f015b71..c1b6ec7bce8 100644
--- a/src/devices/video/tms9927.h
+++ b/src/devices/video/tms9927.h
@@ -48,9 +48,9 @@ public:
DECLARE_READ_LINE_MEMBER(bl_r);
- bool screen_reset();
- int upscroll_offset();
- bool cursor_bounds(rectangle &bounds);
+ bool screen_reset() const { return m_reset; }
+ int upscroll_offset() const { return m_start_datarow; }
+ bool cursor_bounds(rectangle &bounds) const;
protected:
tms9927_device(const machine_config &mconfig, device_type type, const char *tag, device_t *owner, uint32_t clock);