diff --git a/OSBindings/Mac/Clock SignalTests/65816ComparativeTests.mm b/OSBindings/Mac/Clock SignalTests/65816ComparativeTests.mm index c342889a6..6017f35ac 100644 --- a/OSBindings/Mac/Clock SignalTests/65816ComparativeTests.mm +++ b/OSBindings/Mac/Clock SignalTests/65816ComparativeTests.mm @@ -155,14 +155,14 @@ void print_ram(FILE *file, const std::unordered_map &data) { - (void)generate { BusHandler handler; - // Make tests repeatable, at least for any given instance of - // the runtime. - srand(65816); - NSString *const tempDir = NSTemporaryDirectory(); NSLog(@"Outputting to %@", tempDir); for(int operation = 0; operation < 512; operation++) { + // Make tests repeatable, at least for any given instance of + // the runtime. + srand(65816 + operation); + const bool is_emulated = operation & 256; const uint8_t opcode = operation & 255;