1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23 void Read (word18 addr, word36 *dat, processor_cycle_type cyctyp);
24 void Read2 (word18 addr, word36 *dat, processor_cycle_type cyctyp);
25 void Write (word18 addr, word36 dat, processor_cycle_type cyctyp);
26 void Write2 (word18 address, word36 * data, processor_cycle_type cyctyp);
27 void Write1 (word18 address, word36 data, bool isAR);
28 void Write8 (word18 address, word36 * data, bool isAR);
29 void Write16 (word18 address, word36 * data);
30 void Write32 (word18 address, word36 * data);
31 void Read8 (word18 address, word36 * result, bool isAR);
32 void Read16 (word18 address, word36 * result);
33 void WritePage (word18 address, word36 * data, bool isAR);
34 void ReadPage (word18 address, word36 * result, bool isAR);
35 void ReadIndirect (void);