Skip to content

Commit

Permalink
68k: fix s2 crash
Browse files Browse the repository at this point in the history
  • Loading branch information
nukeykt committed Jul 29, 2023
1 parent 0745076 commit 0760c57
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion 68k.c
Original file line number Diff line number Diff line change
Expand Up @@ -4105,7 +4105,7 @@ void M68K_Clock(m68k_t* chip, int clk1, int clk2)
chip->a2_pla[43] = (chip->w530 & 0xf100) == 0x7100;
chip->a2_pla[44] = (chip->w530 & 0xf038) == 0x8008 && !chip->a2_pla[45];
chip->a2_pla[45] = (chip->w530 & 0x01c0) == 0x0100;
chip->a2_pla[46] = (chip->w530 & 0x81be) == 0x813a;
chip->a2_pla[46] = (chip->w530 & 0x81be) == 0x813a && !chip->a2_pla[51];
chip->a2_pla[47] = (chip->w530 & 0x817e) == 0x813a && !chip->a2_pla[51];
chip->a2_pla[48] = (chip->w530 & 0x81bc) == 0x813c && !chip->a2_pla[51];
chip->a2_pla[49] = (chip->w530 & 0x817c) == 0x813c && !chip->a2_pla[51];
Expand Down

0 comments on commit 0760c57

Please sign in to comment.