-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathGayle.c
97 lines (59 loc) · 1.9 KB
/
Gayle.c
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
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
//
// Gayle.c
// Omega
//
// Created by Matt Parsons on 06/03/2019.
// Copyright © 2019 Matt Parsons. All rights reserved.
//
#include "Gayle.h"
#define CLOCKBASE 0xDC0000
void writeGayleB(unsigned int address, unsigned int value){
if(address>=CLOCKBASE){
printf("Write Byte to clock 0x%06x (0x%06x)\n",address,value);
return;
}
printf("Write Byte to Gayle Space 0x%06x (0x%06x)\n",address,value);
}
void writeGayle(unsigned int address, unsigned int value){
if(address>=CLOCKBASE){
printf("Write to clock 0x%06x (0x%06x)\n",address,value);
return;
}
printf("Write to Gayle Space 0x%06x (0x%06x)\n",address,value);
}
void writeGayleL(unsigned int address, unsigned int value){
if(address>=CLOCKBASE){
printf("Write Long to clock 0x%06x (0x%06x)\n",address,value);
return;
}
printf("Write Long to Gayle Space 0x%06x (0x%06x)\n",address,value);
}
uint8_t readGayleB(unsigned int address){
if(address>=CLOCKBASE){
printf("Read Byte From clock 0x%06x\n",address);
return 0xFF;
}
printf("Read Byte From Gayle Space 0x%06x\n",address);
return 0xFF;
}
uint16_t readGayle(unsigned int address){
if(address>=CLOCKBASE){
printf("Read From clock 0x%06x\n",address);
return 0x8000;
}
printf("Read From Gayle Space 0x%06x\n",address);
return 0x8000;
}
uint32_t readGayleL(unsigned int address){
static int count = 0;
if(address>=CLOCKBASE){
printf("Read Long From clock 0x%06x\n",address);
if(count==0){
count +=1;
return 1309036038;
}
return 1309101575;
}
printf("Read Long From Gayle Space 0x%06x\n",address);
return 0x8000;
}