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 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141
|
#include <sfc/sfc.hpp>
#define SHARPRTC_CPP
namespace SuperFamicom {
#include "memory.cpp"
#include "time.cpp"
#include "serialization.cpp"
SharpRTC sharprtc;
void SharpRTC::Enter() {
sharprtc.enter();
}
void SharpRTC::enter() {
while(true) {
if(scheduler.sync == Scheduler::SynchronizeMode::All) {
scheduler.exit(Scheduler::ExitReason::SynchronizeEvent);
}
tick_second();
step(1);
synchronize_cpu();
}
}
void SharpRTC::init() {
}
void SharpRTC::load() {
return;
second = 0;
minute = 0;
hour = 0;
day = 0;
month = 0;
year = 0;
weekday = 0;
}
void SharpRTC::unload() {
}
void SharpRTC::power() {
}
void SharpRTC::reset() {
create(SharpRTC::Enter, 1);
rtc_state = State::Read;
rtc_index = -1;
}
void SharpRTC::sync() {
time_t systime = time(0);
tm* timeinfo = localtime(&systime);
second = min(59, timeinfo->tm_sec);
minute = timeinfo->tm_min;
hour = timeinfo->tm_hour;
day = timeinfo->tm_mday;
month = 1 + timeinfo->tm_mon;
year = 900 + timeinfo->tm_year;
weekday = timeinfo->tm_wday;
}
uint8 SharpRTC::read(unsigned addr) {
addr &= 1;
if(addr == 0) {
if(rtc_state != State::Read) return 0;
if(rtc_index < 0) {
rtc_index++;
return 15;
} else if(rtc_index > 12) {
rtc_index = -1;
return 15;
} else {
return rtc_read(rtc_index++);
}
}
return cpu.regs.mdr;
}
void SharpRTC::write(unsigned addr, uint8 data) {
addr &= 1, data &= 15;
if(addr == 1) {
if(data == 0x0d) {
rtc_state = State::Read;
rtc_index = -1;
return;
}
if(data == 0x0e) {
rtc_state = State::Command;
return;
}
if(data == 0x0f) return; //unknown behavior
if(rtc_state == State::Command) {
if(data == 0) {
rtc_state = State::Write;
rtc_index = 0;
} else if(data == 4) {
rtc_state = State::Ready;
rtc_index = -1;
//reset time
second = 0;
minute = 0;
hour = 0;
day = 0;
month = 0;
year = 0;
weekday = 0;
} else {
//unknown behavior
rtc_state = State::Ready;
}
return;
}
if(rtc_state == State::Write) {
if(rtc_index >= 0 && rtc_index < 12) {
rtc_write(rtc_index++, data);
if(rtc_index == 12) {
//day of week is automatically calculated and written
weekday = calculate_weekday(1000 + year, month, day);
}
}
return;
}
}
}
}
|