1
0
mirror of https://github.com/TomHarte/CLK.git synced 2026-04-26 19:17:52 +00:00

Further reduce printf footprint.

This commit is contained in:
Thomas Harte
2024-02-15 13:41:35 -05:00
parent b4a3b23571
commit 093a029b8c
6 changed files with 5 additions and 12 deletions
-1
View File
@@ -12,7 +12,6 @@
#include "Implementation/6526Storage.hpp"
#include "../Serial/Line.hpp"
#include "../../Outputs/Log.hpp"
namespace MOS::MOS6526 {
@@ -11,6 +11,7 @@
#include <array>
#include "../../../ClockReceiver/ClockReceiver.hpp"
#include "../../../Outputs/Log.hpp"
namespace MOS::MOS6526 {
@@ -220,7 +221,8 @@ struct MOS6526Storage {
control = v;
if(v&2) {
printf("UNIMPLEMENTED: PB strobe\n");
Log::Logger<Log::Source::MOS6526> log;
log.error().append("UNIMPLEMENTED: PB strobe");
}
}