2012-05-21 10:56:48 +00:00
|
|
|
#include <sfc/sfc.hpp>
|
|
|
|
|
|
|
|
namespace SuperFamicom {
|
|
|
|
|
|
|
|
#include "memory.cpp"
|
|
|
|
#include "time.cpp"
|
|
|
|
#include "serialization.cpp"
|
2012-05-22 12:10:00 +00:00
|
|
|
EpsonRTC epsonrtc;
|
2012-05-21 10:56:48 +00:00
|
|
|
|
2015-11-14 00:52:51 +00:00
|
|
|
auto EpsonRTC::Enter() -> void {
|
2016-02-09 11:51:12 +00:00
|
|
|
while(true) scheduler.synchronize(), epsonrtc.main();
|
2012-05-21 10:56:48 +00:00
|
|
|
}
|
|
|
|
|
2016-02-09 11:51:12 +00:00
|
|
|
auto EpsonRTC::main() -> void {
|
|
|
|
if(wait) { if(--wait == 0) ready = 1; }
|
|
|
|
|
|
|
|
clocks++;
|
|
|
|
if((clocks & ~0x00ff) == 0) round_seconds(); //125 microseconds
|
|
|
|
if((clocks & ~0x3fff) == 0) duty(); //1/128th second
|
|
|
|
if((clocks & ~0x7fff) == 0) irq(0); //1/64th second
|
|
|
|
if(clocks == 0) { //1 second
|
|
|
|
seconds++;
|
|
|
|
irq(1);
|
|
|
|
if(seconds % 60 == 0) irq(2); //1 minute
|
|
|
|
if(seconds % 1440 == 0) irq(3), seconds = 0; //1 hour
|
|
|
|
tick();
|
2012-05-21 10:56:48 +00:00
|
|
|
}
|
2016-02-09 11:51:12 +00:00
|
|
|
|
|
|
|
step(1);
|
|
|
|
synchronizeCPU();
|
2012-05-21 10:56:48 +00:00
|
|
|
}
|
|
|
|
|
2015-11-14 00:52:51 +00:00
|
|
|
auto EpsonRTC::init() -> void {
|
2012-05-21 10:56:48 +00:00
|
|
|
}
|
|
|
|
|
2015-11-14 00:52:51 +00:00
|
|
|
auto EpsonRTC::load() -> void {
|
2012-05-23 11:27:45 +00:00
|
|
|
secondlo = 0;
|
|
|
|
secondhi = 0;
|
2012-05-21 10:56:48 +00:00
|
|
|
batteryfailure = 1;
|
2012-05-23 11:27:45 +00:00
|
|
|
|
|
|
|
minutelo = 0;
|
|
|
|
minutehi = 0;
|
|
|
|
resync = 0;
|
|
|
|
|
|
|
|
hourlo = 0;
|
|
|
|
hourhi = 0;
|
|
|
|
meridian = 0;
|
|
|
|
|
|
|
|
daylo = 0;
|
|
|
|
dayhi = 0;
|
|
|
|
dayram = 0;
|
|
|
|
|
|
|
|
monthlo = 0;
|
|
|
|
monthhi = 0;
|
|
|
|
monthram = 0;
|
|
|
|
|
|
|
|
yearlo = 0;
|
|
|
|
yearhi = 0;
|
|
|
|
|
|
|
|
weekday = 0;
|
|
|
|
|
|
|
|
hold = 0;
|
|
|
|
calendar = 0;
|
|
|
|
irqflag = 0;
|
|
|
|
roundseconds = 0;
|
|
|
|
|
|
|
|
irqmask = 0;
|
|
|
|
irqduty = 0;
|
|
|
|
irqperiod = 0;
|
|
|
|
|
|
|
|
pause = 0;
|
|
|
|
stop = 0;
|
|
|
|
atime = 0;
|
|
|
|
test = 0;
|
2012-05-21 10:56:48 +00:00
|
|
|
}
|
|
|
|
|
2015-11-14 00:52:51 +00:00
|
|
|
auto EpsonRTC::unload() -> void {
|
2012-05-21 10:56:48 +00:00
|
|
|
}
|
|
|
|
|
2015-11-14 00:52:51 +00:00
|
|
|
auto EpsonRTC::power() -> void {
|
2012-05-21 10:56:48 +00:00
|
|
|
}
|
|
|
|
|
2015-11-14 00:52:51 +00:00
|
|
|
auto EpsonRTC::reset() -> void {
|
2012-05-23 11:27:45 +00:00
|
|
|
create(EpsonRTC::Enter, 32768 * 64);
|
2012-05-21 10:56:48 +00:00
|
|
|
|
|
|
|
clocks = 0;
|
|
|
|
seconds = 0;
|
|
|
|
|
|
|
|
chipselect = 0;
|
|
|
|
state = State::Mode;
|
|
|
|
offset = 0;
|
|
|
|
wait = 0;
|
Update to v089r06 release.
[Yes, the release number is re-used. -Ed.]
byuu says:
I had some bugs in r07 that I couldn't track down, DKJM2's clock was
getting all out of sync.
So I just reverted to r05, blew away both RTCs entirely, and wrote them
cleanly from scratch (obviously looking off the old code.) A bit
extreme, but it worked.
I believe I found the error in the process, day and month were resetting
the counter to 0 instead of 1, it wasn't handling leap year, etc.
While I was at it, I fixed the day-of-week calculation. The SharpRTC
epoch is actually 1000-01-01, and not 1900-01-01.
I'm sure you guys will be really happy that if it ever becomes 1000AD
again and you're playing a ROM hack that uses the SharpRTC and relies on
its weekday value that it will show the correct day now ...
Kind of a pain to compute, but nothing compared to the seventh circle of
hell that was my IBM dBase III Julian<>Gregorian conversion functions :/
Also found a few bugs in the Epson code this way. And I moved the round
seconds actions and flag clear to +125us after flag set.
So, if you had the old r06 or r07, please delete those.
Unfortunately, this took all of my energy today, so the file names
inside manifest changes will have to be in the next WIP.
EDIT: ran a diff against old r07 and new r06.
- added if(days == 31) case twice in EpsonRTC::tick_day()
- forgot weekday = 0; in SharpRTC::load()
- need to move the cartridge+cheat objects up in sfc/Makefile again
- System::init() needs assert(interface != nullptr /* not 0 */)
2012-05-24 23:26:06 +00:00
|
|
|
ready = 0;
|
|
|
|
holdtick = 0;
|
2012-05-23 11:27:45 +00:00
|
|
|
}
|
|
|
|
|
2015-11-14 00:52:51 +00:00
|
|
|
auto EpsonRTC::sync() -> void {
|
2012-05-23 11:27:45 +00:00
|
|
|
time_t systime = time(0);
|
2013-05-05 09:21:30 +00:00
|
|
|
tm* timeinfo = localtime(&systime);
|
2012-05-23 11:27:45 +00:00
|
|
|
|
2015-11-14 00:52:51 +00:00
|
|
|
uint second = min(59, timeinfo->tm_sec);
|
2012-05-23 11:27:45 +00:00
|
|
|
secondlo = second % 10;
|
|
|
|
secondhi = second / 10;
|
|
|
|
|
2015-11-14 00:52:51 +00:00
|
|
|
uint minute = timeinfo->tm_min;
|
2012-05-23 11:27:45 +00:00
|
|
|
minutelo = minute % 10;
|
|
|
|
minutehi = minute / 10;
|
|
|
|
|
2015-11-14 00:52:51 +00:00
|
|
|
uint hour = timeinfo->tm_hour;
|
2012-05-23 11:27:45 +00:00
|
|
|
if(atime) {
|
|
|
|
hourlo = hour % 10;
|
|
|
|
hourhi = hour / 10;
|
|
|
|
} else {
|
|
|
|
meridian = hour >= 12;
|
|
|
|
hour %= 12;
|
Update to v089r06 release.
[Yes, the release number is re-used. -Ed.]
byuu says:
I had some bugs in r07 that I couldn't track down, DKJM2's clock was
getting all out of sync.
So I just reverted to r05, blew away both RTCs entirely, and wrote them
cleanly from scratch (obviously looking off the old code.) A bit
extreme, but it worked.
I believe I found the error in the process, day and month were resetting
the counter to 0 instead of 1, it wasn't handling leap year, etc.
While I was at it, I fixed the day-of-week calculation. The SharpRTC
epoch is actually 1000-01-01, and not 1900-01-01.
I'm sure you guys will be really happy that if it ever becomes 1000AD
again and you're playing a ROM hack that uses the SharpRTC and relies on
its weekday value that it will show the correct day now ...
Kind of a pain to compute, but nothing compared to the seventh circle of
hell that was my IBM dBase III Julian<>Gregorian conversion functions :/
Also found a few bugs in the Epson code this way. And I moved the round
seconds actions and flag clear to +125us after flag set.
So, if you had the old r06 or r07, please delete those.
Unfortunately, this took all of my energy today, so the file names
inside manifest changes will have to be in the next WIP.
EDIT: ran a diff against old r07 and new r06.
- added if(days == 31) case twice in EpsonRTC::tick_day()
- forgot weekday = 0; in SharpRTC::load()
- need to move the cartridge+cheat objects up in sfc/Makefile again
- System::init() needs assert(interface != nullptr /* not 0 */)
2012-05-24 23:26:06 +00:00
|
|
|
if(hour == 0) hour = 12;
|
|
|
|
hourlo = hour % 10;
|
|
|
|
hourhi = hour / 10;
|
2012-05-23 11:27:45 +00:00
|
|
|
}
|
|
|
|
|
2015-11-14 00:52:51 +00:00
|
|
|
uint day = timeinfo->tm_mday;
|
2012-05-23 11:27:45 +00:00
|
|
|
daylo = day % 10;
|
|
|
|
dayhi = day / 10;
|
|
|
|
|
2015-11-14 00:52:51 +00:00
|
|
|
uint month = 1 + timeinfo->tm_mon;
|
2012-05-23 11:27:45 +00:00
|
|
|
monthlo = month % 10;
|
|
|
|
monthhi = month / 10;
|
|
|
|
|
2015-11-14 00:52:51 +00:00
|
|
|
uint year = timeinfo->tm_year % 100;
|
2012-05-23 11:27:45 +00:00
|
|
|
yearlo = year % 10;
|
|
|
|
yearhi = year / 10;
|
|
|
|
|
|
|
|
weekday = timeinfo->tm_wday;
|
|
|
|
|
Update to v089r06 release.
[Yes, the release number is re-used. -Ed.]
byuu says:
I had some bugs in r07 that I couldn't track down, DKJM2's clock was
getting all out of sync.
So I just reverted to r05, blew away both RTCs entirely, and wrote them
cleanly from scratch (obviously looking off the old code.) A bit
extreme, but it worked.
I believe I found the error in the process, day and month were resetting
the counter to 0 instead of 1, it wasn't handling leap year, etc.
While I was at it, I fixed the day-of-week calculation. The SharpRTC
epoch is actually 1000-01-01, and not 1900-01-01.
I'm sure you guys will be really happy that if it ever becomes 1000AD
again and you're playing a ROM hack that uses the SharpRTC and relies on
its weekday value that it will show the correct day now ...
Kind of a pain to compute, but nothing compared to the seventh circle of
hell that was my IBM dBase III Julian<>Gregorian conversion functions :/
Also found a few bugs in the Epson code this way. And I moved the round
seconds actions and flag clear to +125us after flag set.
So, if you had the old r06 or r07, please delete those.
Unfortunately, this took all of my energy today, so the file names
inside manifest changes will have to be in the next WIP.
EDIT: ran a diff against old r07 and new r06.
- added if(days == 31) case twice in EpsonRTC::tick_day()
- forgot weekday = 0; in SharpRTC::load()
- need to move the cartridge+cheat objects up in sfc/Makefile again
- System::init() needs assert(interface != nullptr /* not 0 */)
2012-05-24 23:26:06 +00:00
|
|
|
resync = true; //alert program that time has changed
|
2012-05-21 10:56:48 +00:00
|
|
|
}
|
|
|
|
|
2016-02-16 09:32:49 +00:00
|
|
|
auto EpsonRTC::read(uint24 addr, uint8 data) -> uint8 {
|
Update to v095r05 release.
byuu says:
Changelog:
- GBA: lots of emulation improvements
- PPU PRAM is 16-bits wide
- DMA masks &~1/Half, &~3/Word
- VRAM OBJ 8-bit writes are ignored
- OAM 8-bit writes are ignored
- BGnCNT unused bits are writable*
- BG(0,1)CNT can't set the d13
- BLDALPHA is readable (fixes Donkey Kong Country, etc)
- SNES: lots of code cleanups
- sfc/chip => sfc/coprocessor
- UI: save most recent controller selection
GBA test scores: 1552/1552, 37/38, 1020/1260
(* forgot to add the value to the read function, so endrift's I/O tests
for them will fail. Fixed locally.)
Note: SNES is the only system with multiple controller/expansion port
options, and as such is the only one with a "None" option. Because it's
shared by the controller and expansion port, it ends up sorted first in
the list. This means that on your first run, you'll need to go to Super
Famicom->Controller Port 1 and select "Gamepad", otherwise input won't
work.
Also note that changing the expansion port device requires loading a new
cart. Unlike controllers, you aren't meant to hotplug expansion port
devices.
2015-11-12 10:15:03 +00:00
|
|
|
cpu.synchronizeCoprocessors();
|
2012-05-21 10:56:48 +00:00
|
|
|
addr &= 3;
|
|
|
|
|
|
|
|
if(addr == 0) {
|
|
|
|
return chipselect;
|
|
|
|
}
|
|
|
|
|
|
|
|
if(addr == 1) {
|
|
|
|
if(chipselect != 1) return 0;
|
Update to v089r06 release.
[Yes, the release number is re-used. -Ed.]
byuu says:
I had some bugs in r07 that I couldn't track down, DKJM2's clock was
getting all out of sync.
So I just reverted to r05, blew away both RTCs entirely, and wrote them
cleanly from scratch (obviously looking off the old code.) A bit
extreme, but it worked.
I believe I found the error in the process, day and month were resetting
the counter to 0 instead of 1, it wasn't handling leap year, etc.
While I was at it, I fixed the day-of-week calculation. The SharpRTC
epoch is actually 1000-01-01, and not 1900-01-01.
I'm sure you guys will be really happy that if it ever becomes 1000AD
again and you're playing a ROM hack that uses the SharpRTC and relies on
its weekday value that it will show the correct day now ...
Kind of a pain to compute, but nothing compared to the seventh circle of
hell that was my IBM dBase III Julian<>Gregorian conversion functions :/
Also found a few bugs in the Epson code this way. And I moved the round
seconds actions and flag clear to +125us after flag set.
So, if you had the old r06 or r07, please delete those.
Unfortunately, this took all of my energy today, so the file names
inside manifest changes will have to be in the next WIP.
EDIT: ran a diff against old r07 and new r06.
- added if(days == 31) case twice in EpsonRTC::tick_day()
- forgot weekday = 0; in SharpRTC::load()
- need to move the cartridge+cheat objects up in sfc/Makefile again
- System::init() needs assert(interface != nullptr /* not 0 */)
2012-05-24 23:26:06 +00:00
|
|
|
if(ready == 0) return 0;
|
2012-05-21 10:56:48 +00:00
|
|
|
if(state == State::Write) return mdr;
|
|
|
|
if(state != State::Read) return 0;
|
Update to v089r06 release.
[Yes, the release number is re-used. -Ed.]
byuu says:
I had some bugs in r07 that I couldn't track down, DKJM2's clock was
getting all out of sync.
So I just reverted to r05, blew away both RTCs entirely, and wrote them
cleanly from scratch (obviously looking off the old code.) A bit
extreme, but it worked.
I believe I found the error in the process, day and month were resetting
the counter to 0 instead of 1, it wasn't handling leap year, etc.
While I was at it, I fixed the day-of-week calculation. The SharpRTC
epoch is actually 1000-01-01, and not 1900-01-01.
I'm sure you guys will be really happy that if it ever becomes 1000AD
again and you're playing a ROM hack that uses the SharpRTC and relies on
its weekday value that it will show the correct day now ...
Kind of a pain to compute, but nothing compared to the seventh circle of
hell that was my IBM dBase III Julian<>Gregorian conversion functions :/
Also found a few bugs in the Epson code this way. And I moved the round
seconds actions and flag clear to +125us after flag set.
So, if you had the old r06 or r07, please delete those.
Unfortunately, this took all of my energy today, so the file names
inside manifest changes will have to be in the next WIP.
EDIT: ran a diff against old r07 and new r06.
- added if(days == 31) case twice in EpsonRTC::tick_day()
- forgot weekday = 0; in SharpRTC::load()
- need to move the cartridge+cheat objects up in sfc/Makefile again
- System::init() needs assert(interface != nullptr /* not 0 */)
2012-05-24 23:26:06 +00:00
|
|
|
ready = 0;
|
2012-05-23 11:27:45 +00:00
|
|
|
wait = 8;
|
2012-05-21 10:56:48 +00:00
|
|
|
return rtc_read(offset++);
|
|
|
|
}
|
|
|
|
|
|
|
|
if(addr == 2) {
|
|
|
|
return ready << 7;
|
|
|
|
}
|
2015-12-14 09:41:06 +00:00
|
|
|
|
|
|
|
return data;
|
2012-05-21 10:56:48 +00:00
|
|
|
}
|
|
|
|
|
2016-02-16 09:32:49 +00:00
|
|
|
auto EpsonRTC::write(uint24 addr, uint8 data) -> void {
|
Update to v095r05 release.
byuu says:
Changelog:
- GBA: lots of emulation improvements
- PPU PRAM is 16-bits wide
- DMA masks &~1/Half, &~3/Word
- VRAM OBJ 8-bit writes are ignored
- OAM 8-bit writes are ignored
- BGnCNT unused bits are writable*
- BG(0,1)CNT can't set the d13
- BLDALPHA is readable (fixes Donkey Kong Country, etc)
- SNES: lots of code cleanups
- sfc/chip => sfc/coprocessor
- UI: save most recent controller selection
GBA test scores: 1552/1552, 37/38, 1020/1260
(* forgot to add the value to the read function, so endrift's I/O tests
for them will fail. Fixed locally.)
Note: SNES is the only system with multiple controller/expansion port
options, and as such is the only one with a "None" option. Because it's
shared by the controller and expansion port, it ends up sorted first in
the list. This means that on your first run, you'll need to go to Super
Famicom->Controller Port 1 and select "Gamepad", otherwise input won't
work.
Also note that changing the expansion port device requires loading a new
cart. Unlike controllers, you aren't meant to hotplug expansion port
devices.
2015-11-12 10:15:03 +00:00
|
|
|
cpu.synchronizeCoprocessors();
|
2012-05-21 10:56:48 +00:00
|
|
|
addr &= 3, data &= 15;
|
|
|
|
|
|
|
|
if(addr == 0) {
|
|
|
|
chipselect = data;
|
|
|
|
if(chipselect != 1) rtc_reset();
|
Update to v089r06 release.
[Yes, the release number is re-used. -Ed.]
byuu says:
I had some bugs in r07 that I couldn't track down, DKJM2's clock was
getting all out of sync.
So I just reverted to r05, blew away both RTCs entirely, and wrote them
cleanly from scratch (obviously looking off the old code.) A bit
extreme, but it worked.
I believe I found the error in the process, day and month were resetting
the counter to 0 instead of 1, it wasn't handling leap year, etc.
While I was at it, I fixed the day-of-week calculation. The SharpRTC
epoch is actually 1000-01-01, and not 1900-01-01.
I'm sure you guys will be really happy that if it ever becomes 1000AD
again and you're playing a ROM hack that uses the SharpRTC and relies on
its weekday value that it will show the correct day now ...
Kind of a pain to compute, but nothing compared to the seventh circle of
hell that was my IBM dBase III Julian<>Gregorian conversion functions :/
Also found a few bugs in the Epson code this way. And I moved the round
seconds actions and flag clear to +125us after flag set.
So, if you had the old r06 or r07, please delete those.
Unfortunately, this took all of my energy today, so the file names
inside manifest changes will have to be in the next WIP.
EDIT: ran a diff against old r07 and new r06.
- added if(days == 31) case twice in EpsonRTC::tick_day()
- forgot weekday = 0; in SharpRTC::load()
- need to move the cartridge+cheat objects up in sfc/Makefile again
- System::init() needs assert(interface != nullptr /* not 0 */)
2012-05-24 23:26:06 +00:00
|
|
|
ready = 1;
|
2012-05-21 10:56:48 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
if(addr == 1) {
|
|
|
|
if(chipselect != 1) return;
|
Update to v089r06 release.
[Yes, the release number is re-used. -Ed.]
byuu says:
I had some bugs in r07 that I couldn't track down, DKJM2's clock was
getting all out of sync.
So I just reverted to r05, blew away both RTCs entirely, and wrote them
cleanly from scratch (obviously looking off the old code.) A bit
extreme, but it worked.
I believe I found the error in the process, day and month were resetting
the counter to 0 instead of 1, it wasn't handling leap year, etc.
While I was at it, I fixed the day-of-week calculation. The SharpRTC
epoch is actually 1000-01-01, and not 1900-01-01.
I'm sure you guys will be really happy that if it ever becomes 1000AD
again and you're playing a ROM hack that uses the SharpRTC and relies on
its weekday value that it will show the correct day now ...
Kind of a pain to compute, but nothing compared to the seventh circle of
hell that was my IBM dBase III Julian<>Gregorian conversion functions :/
Also found a few bugs in the Epson code this way. And I moved the round
seconds actions and flag clear to +125us after flag set.
So, if you had the old r06 or r07, please delete those.
Unfortunately, this took all of my energy today, so the file names
inside manifest changes will have to be in the next WIP.
EDIT: ran a diff against old r07 and new r06.
- added if(days == 31) case twice in EpsonRTC::tick_day()
- forgot weekday = 0; in SharpRTC::load()
- need to move the cartridge+cheat objects up in sfc/Makefile again
- System::init() needs assert(interface != nullptr /* not 0 */)
2012-05-24 23:26:06 +00:00
|
|
|
if(ready == 0) return;
|
2012-05-21 10:56:48 +00:00
|
|
|
|
|
|
|
if(state == State::Mode) {
|
|
|
|
if(data != 0x03 && data != 0x0c) return;
|
|
|
|
state = State::Seek;
|
Update to v089r06 release.
[Yes, the release number is re-used. -Ed.]
byuu says:
I had some bugs in r07 that I couldn't track down, DKJM2's clock was
getting all out of sync.
So I just reverted to r05, blew away both RTCs entirely, and wrote them
cleanly from scratch (obviously looking off the old code.) A bit
extreme, but it worked.
I believe I found the error in the process, day and month were resetting
the counter to 0 instead of 1, it wasn't handling leap year, etc.
While I was at it, I fixed the day-of-week calculation. The SharpRTC
epoch is actually 1000-01-01, and not 1900-01-01.
I'm sure you guys will be really happy that if it ever becomes 1000AD
again and you're playing a ROM hack that uses the SharpRTC and relies on
its weekday value that it will show the correct day now ...
Kind of a pain to compute, but nothing compared to the seventh circle of
hell that was my IBM dBase III Julian<>Gregorian conversion functions :/
Also found a few bugs in the Epson code this way. And I moved the round
seconds actions and flag clear to +125us after flag set.
So, if you had the old r06 or r07, please delete those.
Unfortunately, this took all of my energy today, so the file names
inside manifest changes will have to be in the next WIP.
EDIT: ran a diff against old r07 and new r06.
- added if(days == 31) case twice in EpsonRTC::tick_day()
- forgot weekday = 0; in SharpRTC::load()
- need to move the cartridge+cheat objects up in sfc/Makefile again
- System::init() needs assert(interface != nullptr /* not 0 */)
2012-05-24 23:26:06 +00:00
|
|
|
ready = 0;
|
2012-05-23 11:27:45 +00:00
|
|
|
wait = 8;
|
2012-05-21 10:56:48 +00:00
|
|
|
mdr = data;
|
|
|
|
}
|
|
|
|
|
|
|
|
else if(state == State::Seek) {
|
|
|
|
if(mdr == 0x03) state = State::Write;
|
|
|
|
if(mdr == 0x0c) state = State::Read;
|
|
|
|
offset = data;
|
Update to v089r06 release.
[Yes, the release number is re-used. -Ed.]
byuu says:
I had some bugs in r07 that I couldn't track down, DKJM2's clock was
getting all out of sync.
So I just reverted to r05, blew away both RTCs entirely, and wrote them
cleanly from scratch (obviously looking off the old code.) A bit
extreme, but it worked.
I believe I found the error in the process, day and month were resetting
the counter to 0 instead of 1, it wasn't handling leap year, etc.
While I was at it, I fixed the day-of-week calculation. The SharpRTC
epoch is actually 1000-01-01, and not 1900-01-01.
I'm sure you guys will be really happy that if it ever becomes 1000AD
again and you're playing a ROM hack that uses the SharpRTC and relies on
its weekday value that it will show the correct day now ...
Kind of a pain to compute, but nothing compared to the seventh circle of
hell that was my IBM dBase III Julian<>Gregorian conversion functions :/
Also found a few bugs in the Epson code this way. And I moved the round
seconds actions and flag clear to +125us after flag set.
So, if you had the old r06 or r07, please delete those.
Unfortunately, this took all of my energy today, so the file names
inside manifest changes will have to be in the next WIP.
EDIT: ran a diff against old r07 and new r06.
- added if(days == 31) case twice in EpsonRTC::tick_day()
- forgot weekday = 0; in SharpRTC::load()
- need to move the cartridge+cheat objects up in sfc/Makefile again
- System::init() needs assert(interface != nullptr /* not 0 */)
2012-05-24 23:26:06 +00:00
|
|
|
ready = 0;
|
2012-05-23 11:27:45 +00:00
|
|
|
wait = 8;
|
2012-05-21 10:56:48 +00:00
|
|
|
mdr = data;
|
|
|
|
}
|
|
|
|
|
|
|
|
else if(state == State::Write) {
|
|
|
|
rtc_write(offset++, data);
|
Update to v089r06 release.
[Yes, the release number is re-used. -Ed.]
byuu says:
I had some bugs in r07 that I couldn't track down, DKJM2's clock was
getting all out of sync.
So I just reverted to r05, blew away both RTCs entirely, and wrote them
cleanly from scratch (obviously looking off the old code.) A bit
extreme, but it worked.
I believe I found the error in the process, day and month were resetting
the counter to 0 instead of 1, it wasn't handling leap year, etc.
While I was at it, I fixed the day-of-week calculation. The SharpRTC
epoch is actually 1000-01-01, and not 1900-01-01.
I'm sure you guys will be really happy that if it ever becomes 1000AD
again and you're playing a ROM hack that uses the SharpRTC and relies on
its weekday value that it will show the correct day now ...
Kind of a pain to compute, but nothing compared to the seventh circle of
hell that was my IBM dBase III Julian<>Gregorian conversion functions :/
Also found a few bugs in the Epson code this way. And I moved the round
seconds actions and flag clear to +125us after flag set.
So, if you had the old r06 or r07, please delete those.
Unfortunately, this took all of my energy today, so the file names
inside manifest changes will have to be in the next WIP.
EDIT: ran a diff against old r07 and new r06.
- added if(days == 31) case twice in EpsonRTC::tick_day()
- forgot weekday = 0; in SharpRTC::load()
- need to move the cartridge+cheat objects up in sfc/Makefile again
- System::init() needs assert(interface != nullptr /* not 0 */)
2012-05-24 23:26:06 +00:00
|
|
|
ready = 0;
|
2012-05-23 11:27:45 +00:00
|
|
|
wait = 8;
|
2012-05-21 10:56:48 +00:00
|
|
|
mdr = data;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|