1
0
mirror of https://github.com/TomHarte/CLK.git synced 2026-04-26 03:29:40 +00:00

Attempts to start producing actual video.

This commit is contained in:
Thomas Harte
2019-10-10 22:46:58 -04:00
parent d1dd6876b5
commit b0f5f7bd37
4 changed files with 61 additions and 5 deletions
+2 -1
View File
@@ -8,6 +8,7 @@
#include "MFP68901.hpp"
#define LOG_PREFIX "[MFP] "
#include "../../Outputs/Log.hpp"
using namespace Motorola::MFP68901;
@@ -38,7 +39,7 @@ uint8_t MFP68901::read(int address) {
case 0x16: LOG("Read: transmitter status"); break;
case 0x17: LOG("Read: USART data"); break;
}
return 0xff;
return 0x00;
}
void MFP68901::write(int address, uint8_t value) {