1
0
mirror of https://github.com/TomHarte/CLK.git synced 2024-09-30 22:56:03 +00:00

Rearrange fields.

This commit is contained in:
Thomas Harte 2021-04-01 12:44:00 -04:00
parent 87317f5673
commit 044ac949ba

View File

@ -53,14 +53,14 @@ template <VideoTiming timing> class Video {
// Number of lines comprising a whole frame. Will be 311 or 312.
int lines_per_frame;
// Number of cycles after first pixel fetch at which interrupt is first signalled.
int interrupt_time;
// Number of cycles before first pixel fetch that contention starts to be applied.
int contention_leadin;
// Period in a line for which contention is applied.
int contention_duration;
// Number of cycles after first pixel fetch at which interrupt is first signalled.
int interrupt_time;
// Contention to apply, in half-cycles, as a function of number of half cycles since
// contention began.
int delays[16];