1
0
mirror of https://github.com/TomHarte/CLK.git synced 2024-07-10 12:29:01 +00:00

Ensures no compiler will think this can exit without returning.

This commit is contained in:
Thomas Harte 2019-07-08 18:13:23 -04:00
parent 6438a5ca1f
commit 1a9aa60bf7

View File

@ -499,6 +499,9 @@ template <Analyser::Static::Macintosh::Target::Model model> class ConcreteMachin
(video_.is_outputting() ? 0x00 : 0x40)
);
}
// Should be unreachable.
return 0xff;
}
void set_control_line_output(Port port, Line line, bool value) {