summaryrefslogtreecommitdiffstatshomepage
path: root/src/devices/cpu/h8/h8_sci.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/devices/cpu/h8/h8_sci.h')
-rw-r--r--src/devices/cpu/h8/h8_sci.h26
1 files changed, 13 insertions, 13 deletions
diff --git a/src/devices/cpu/h8/h8_sci.h b/src/devices/cpu/h8/h8_sci.h
index aa15f491160..bf3d5b8bcbb 100644
--- a/src/devices/cpu/h8/h8_sci.h
+++ b/src/devices/cpu/h8/h8_sci.h
@@ -29,19 +29,19 @@ public:
void set_info(const char *intc, int eri, int rxi, int txi, int tei);
void set_external_clock_period(const attotime &_period);
- DECLARE_WRITE8_MEMBER(smr_w);
- DECLARE_READ8_MEMBER(smr_r);
- DECLARE_WRITE8_MEMBER(brr_w);
- DECLARE_READ8_MEMBER(brr_r);
- DECLARE_WRITE8_MEMBER(scr_w);
- DECLARE_READ8_MEMBER(scr_r);
- DECLARE_WRITE8_MEMBER(tdr_w);
- DECLARE_READ8_MEMBER(tdr_r);
- DECLARE_WRITE8_MEMBER(ssr_w);
- DECLARE_READ8_MEMBER(ssr_r);
- DECLARE_READ8_MEMBER(rdr_r);
- DECLARE_WRITE8_MEMBER(scmr_w);
- DECLARE_READ8_MEMBER(scmr_r);
+ void smr_w(uint8_t data);
+ uint8_t smr_r();
+ void brr_w(uint8_t data);
+ uint8_t brr_r();
+ void scr_w(uint8_t data);
+ uint8_t scr_r();
+ void tdr_w(uint8_t data);
+ uint8_t tdr_r();
+ void ssr_w(uint8_t data);
+ uint8_t ssr_r();
+ uint8_t rdr_r();
+ void scmr_w(uint8_t data);
+ uint8_t scmr_r();
DECLARE_WRITE_LINE_MEMBER(rx_w);
DECLARE_WRITE_LINE_MEMBER(clk_w);