summaryrefslogtreecommitdiffstatshomepage
path: root/src/emu/machine/f3853.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/emu/machine/f3853.h')
-rw-r--r--src/emu/machine/f3853.h36
1 files changed, 18 insertions, 18 deletions
diff --git a/src/emu/machine/f3853.h b/src/emu/machine/f3853.h
index cec1fbb48e2..86f8856ec62 100644
--- a/src/emu/machine/f3853.h
+++ b/src/emu/machine/f3853.h
@@ -60,18 +60,18 @@
struct f3853_interface
{
- void (*m_interrupt_request)(device_t *device, UINT16 addr, int level);
+ void (*m_interrupt_request)(device_t *device, UINT16 addr, int level);
};
// ======================> f3853_device
class f3853_device : public device_t,
- public f3853_interface
+ public f3853_interface
{
public:
- // construction/destruction
- f3853_device(const machine_config &mconfig, const char *tag, device_t *owner, UINT32 clock);
+ // construction/destruction
+ f3853_device(const machine_config &mconfig, const char *tag, device_t *owner, UINT32 clock);
UINT8 f3853_r(UINT32 offset);
void f3853_w(UINT32 offset, UINT8 data);
@@ -80,12 +80,12 @@ public:
void f3853_set_priority_in_line(int level);
protected:
- // device-level overrides
- virtual void device_config_complete();
- virtual void device_start();
- virtual void device_reset();
- virtual void device_post_load() { }
- virtual void device_clock_changed() { }
+ // device-level overrides
+ virtual void device_config_complete();
+ virtual void device_start();
+ virtual void device_reset();
+ virtual void device_post_load() { }
+ virtual void device_clock_changed() { }
static TIMER_CALLBACK( f3853_timer_callback );
@@ -95,17 +95,17 @@ private:
void f3853_timer_start(UINT8 value);
void f3853_timer();
- UINT8 m_high;
- UINT8 m_low; // Bit 7 is set to 0 for timer interrupts, 1 for external interrupts
- INT32 m_external_enable;
- INT32 m_timer_enable;
+ UINT8 m_high;
+ UINT8 m_low; // Bit 7 is set to 0 for timer interrupts, 1 for external interrupts
+ INT32 m_external_enable;
+ INT32 m_timer_enable;
- INT32 m_request_flipflop;
+ INT32 m_request_flipflop;
- INT32 m_priority_line; /* inverted level*/
- INT32 m_external_interrupt_line; /* inverted level */
+ INT32 m_priority_line; /* inverted level*/
+ INT32 m_external_interrupt_line; /* inverted level */
- emu_timer *m_timer;
+ emu_timer *m_timer;
UINT8 m_value_to_cycle[0x100];
};