]> Shamusworld >> Repos - virtualjaguar/blob - src/clock.cpp
Virtual Jaguar GCC/SDL v1.0.3 import.
[virtualjaguar] / src / clock.cpp
1 //
2 // Clock handler
3 //
4 // by cal2
5 // GCC/SDL port by Niels Wagenaar (Linux/WIN32) and Caz (BeOS)
6 // Cleanups by James L. Hammons
7 //
8
9 #include "jaguar.h"
10
11
12 void clock_init(void)
13 {
14         clock_reset();
15 }
16
17 void clock_reset(void)
18 {
19 }
20
21 void clock_done(void)
22 {
23 }
24
25 void clock_byte_write(uint32 offset, uint8 data)
26 {
27 }
28
29 void clock_word_write(uint32 offset, uint16 data)
30 {
31 }
32
33 uint8 clock_byte_read(uint32 offset)
34 {
35         return 0xFF;
36 }
37
38 uint16 clock_word_read(uint32 offset)
39 {
40         return 0xFFFF;
41 }