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

Reduced copying of Pulses.

This commit is contained in:
Thomas Harte
2017-07-16 19:49:31 -04:00
parent 5a6b7219b9
commit b3861ff755
4 changed files with 5 additions and 5 deletions
+1 -1
View File
@@ -72,7 +72,7 @@ uint8_t Tape::get_data_register() {
return (uint8_t)(data_register_ >> 2);
}
void Tape::process_input_pulse(Storage::Tape::Tape::Pulse pulse) {
void Tape::process_input_pulse(const Storage::Tape::Tape::Pulse &pulse) {
shifter_.process_pulse(pulse);
}