mirror of
https://github.com/TomHarte/CLK.git
synced 2025-02-16 18:30:32 +00:00
Reestablish relationship between fetch and output.
This commit is contained in:
parent
d46f869276
commit
cc04349618
@ -48,8 +48,9 @@ Base<personality>::Base() :
|
||||
// Start at a random position.
|
||||
output_pointer_.row = rand() % 262;
|
||||
output_pointer_.column = rand() % (Timing<personality>::CyclesPerLine - output_lag);
|
||||
fetch_pointer_.row = fetch_pointer_.row;
|
||||
fetch_pointer_.column = output_pointer_.column + output_lag;
|
||||
|
||||
fetch_pointer_ = output_pointer_;
|
||||
fetch_pointer_.column += output_lag;
|
||||
}
|
||||
|
||||
template <Personality personality>
|
||||
|
Loading…
x
Reference in New Issue
Block a user