1
0
mirror of https://github.com/TomHarte/CLK.git synced 2024-10-04 17:56:29 +00:00

Fix transcription of write.

This commit is contained in:
Thomas Harte 2022-08-06 10:11:26 -04:00
parent cc9b6bbc61
commit e897cd99f9

View File

@ -153,7 +153,7 @@ struct Chipset {
if([type isEqualToString:@"bread"]) expected_transaction.type = TransactionType::ReadB;
if([type isEqualToString:@"cread"]) expected_transaction.type = TransactionType::ReadC;
} else if([type isEqualToString:@"write"]) {
expected_transaction.type = TransactionType::WriteFromPipeline;
expected_transaction.type = TransactionType::AddToPipeline;
} else {
NSLog(@"Unhandled type: %@", type);
XCTAssert(false);