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

Corrects comment.

This commit is contained in:
Thomas Harte 2019-08-04 20:30:41 -04:00
parent 0e293e4983
commit f88dc23c71

View File

@ -742,7 +742,7 @@
- (void)performDIVS:(uint16_t)divisor d1:(uint32_t)d1 {
self.machine->set_program({
0x83fc, divisor // DIVS #$eef0, D1
0x83fc, divisor // DIVS #divisor, D1
});
auto state = self.machine->get_processor_state();
state.data[1] = d1;