1
0
mirror of https://github.com/TomHarte/CLK.git synced 2026-04-22 08:16:42 +00:00

Introduces the fundamentals of bus routing for the MSX.

This commit is contained in:
Thomas Harte
2017-11-26 16:47:59 -05:00
parent a14b53a9ab
commit 0eb5dd9688
3 changed files with 111 additions and 1 deletions
+7
View File
@@ -25,3 +25,10 @@ std::shared_ptr<Outputs::CRT::CRT> TMS9918::get_crt() {
void TMS9918::run_for(const Cycles cycles) {
}
void TMS9918::set_register(int address, uint8_t value) {
}
uint8_t TMS9918::get_register(int address) {
return 0;
}