1
0
mirror of https://github.com/TomHarte/CLK.git synced 2024-07-09 06:29:33 +00:00

Introduce test case for fill mode.

This commit is contained in:
Thomas Harte 2021-10-31 14:08:37 -07:00
parent 4c1ab6ff25
commit 9e6ffaad7d
2 changed files with 94486 additions and 1 deletions

File diff suppressed because it is too large Load Diff

View File

@ -30,7 +30,7 @@ using WriteVector = std::vector<std::pair<uint32_t, uint16_t>>;
- (BOOL)verifyWrites:(WriteVector &)writes blitter:(Amiga::Blitter &)blitter ram:(uint16_t *)ram {
// Run for however much time the Blitter wants.
while(blitter.get_status()) {
while(blitter.get_status() & 0x4000) {
blitter.advance();
}
@ -231,4 +231,8 @@ using WriteVector = std::vector<std::pair<uint32_t, uint16_t>>;
[self testCase:@"RAM disk open"];
}
- (void)testSpots {
[self testCase:@"spots"];
}
@end