blob: e973412c66fb93c90ec87323ebd316996e181774 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
|
#include "cpu/m68000/m68000.h"
class m68307cpu_device;
#define m68307TIMER_TMR (0x0)
#define m68307TIMER_TRR (0x1)
#define m68307TIMER_TCR (0x2)
#define m68307TIMER_TCN (0x3)
#define m68307TIMER_TER (0x4)
#define m68307TIMER_WRR (0x5)
#define m68307TIMER_WCR (0x6)
#define m68307TIMER_XXX (0x7)
struct m68307_single_timer
{
UINT16 regs[0x8];
bool enabled;
emu_timer *mametimer;
};
class m68307_timer
{
public:
m68307_single_timer singletimer[2];
emu_timer *wd_mametimer;
m68307cpu_device *parent;
void write_tmr(UINT16 data, UINT16 mem_mask, int which);
void write_trr(UINT16 data, UINT16 mem_mask, int which);
void write_ter(UINT16 data, UINT16 mem_mask, int which);
UINT16 read_tcn(UINT16 mem_mask, int which);
void init(m68307cpu_device *device);
void reset(void);
};
|