]> Shamusworld >> Repos - virtualjaguar/blob - src/clock.cpp
Initial revision
[virtualjaguar] / src / clock.cpp
1 #include "include/jaguar.h"
2
3
4 //////////////////////////////////////////////////////////////////////////////
5 //
6 //////////////////////////////////////////////////////////////////////////////
7 //
8 //
9 //
10 //////////////////////////////////////////////////////////////////////////////
11 void clock_init(void)
12 {
13         clock_reset();
14 }
15 //////////////////////////////////////////////////////////////////////////////
16 //
17 //////////////////////////////////////////////////////////////////////////////
18 //
19 //
20 //
21 //////////////////////////////////////////////////////////////////////////////
22 void clock_reset(void)
23 {
24 }
25 //////////////////////////////////////////////////////////////////////////////
26 //
27 //////////////////////////////////////////////////////////////////////////////
28 //
29 //
30 //
31 //////////////////////////////////////////////////////////////////////////////
32 void clock_done(void)
33 {
34 }
35 //////////////////////////////////////////////////////////////////////////////
36 //
37 //////////////////////////////////////////////////////////////////////////////
38 //
39 //
40 //
41 //////////////////////////////////////////////////////////////////////////////
42 void clock_byte_write(uint32 offset, uint8 data)
43 {
44 }
45 //////////////////////////////////////////////////////////////////////////////
46 //
47 //////////////////////////////////////////////////////////////////////////////
48 //
49 //
50 //
51 //////////////////////////////////////////////////////////////////////////////
52 void clock_word_write(uint32 offset, uint16 data)
53 {
54 }
55 //////////////////////////////////////////////////////////////////////////////
56 //
57 //////////////////////////////////////////////////////////////////////////////
58 //
59 //
60 //
61 //////////////////////////////////////////////////////////////////////////////
62 uint8 clock_byte_read(uint32 offset)
63 {
64         return(0xff);
65 }
66 //////////////////////////////////////////////////////////////////////////////
67 //
68 //////////////////////////////////////////////////////////////////////////////
69 //
70 //
71 //
72 //////////////////////////////////////////////////////////////////////////////
73 uint16 clock_word_read(uint32 offset)
74 {
75         return(0xffff);
76 }