1
0
mirror of https://github.com/TomHarte/CLK.git synced 2024-11-21 21:33:54 +00:00

Eliminate printf.

This commit is contained in:
Thomas Harte 2024-01-21 21:19:38 -05:00
parent 7122a9ee16
commit a6df20ff84

View File

@ -28,9 +28,6 @@ template <bool record_bus = false> class Blitter: public DMADevice<4, 4> {
using DMADevice::DMADevice;
template <int id, int shift> void set_pointer(uint16_t value) {
if(get_status() & 0x4000) {
printf(">>>");
}
DMADevice<4, 4>::set_pointer<id, shift>(value);
}