1
0
mirror of https://github.com/TomHarte/CLK.git synced 2026-04-24 05:18:36 +00:00

Hit and hope is getting me nowhere. Time to unit test this thing.

This commit is contained in:
Thomas Harte
2016-07-09 15:40:25 -04:00
parent 8827597363
commit 7cc4bf3fe7
9 changed files with 124 additions and 14 deletions
+1
View File
@@ -45,6 +45,7 @@ void Bus::set_line_output_did_change(Line line)
if(locked_port)
{
new_line_level = (LineLevel)((bool)new_line_level & (bool)locked_port->get_output(line));
// printf("[%s] %s is now %s\n", typeid(locked_port).name(), (bool)locked_port->get_output(line) ? "high" : "low");
}
}