1
0
mirror of https://github.com/TomHarte/CLK.git synced 2026-04-21 17:16:44 +00:00

Commuted all of 'Storage' other than 'Tape' to postfix underscores.

This commit is contained in:
Thomas Harte
2016-12-03 11:59:28 -05:00
parent 5be22e2f8d
commit 0dc2aa6454
13 changed files with 156 additions and 157 deletions
+3 -4
View File
@@ -90,10 +90,9 @@ namespace Storage {
Time get_time_into_next_event();
private:
unsigned int _input_clock_rate;
int _cycles_until_event;
Time _subcycles_until_event;
Time _event_interval;
unsigned int input_clock_rate_;
int cycles_until_event_;
Time subcycles_until_event_;
};
}