mirror of
https://github.com/TomHarte/CLK.git
synced 2024-11-25 16:31:42 +00:00
Fix transcription of write.
This commit is contained in:
parent
cc9b6bbc61
commit
e897cd99f9
@ -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);
|
||||
|
Loading…
Reference in New Issue
Block a user