Skip to content

Commit

Permalink
Correct 1ms idle timeout for GSU
Browse files Browse the repository at this point in the history
  • Loading branch information
mrehkopf committed Dec 8, 2018
1 parent ee279c4 commit 14adc83
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion verilog/sd2snes_gsu/main.v
Expand Up @@ -262,7 +262,7 @@ parameter ST_GSU_RAM_RD_END = 11'b00100000000;
parameter ST_GSU_RAM_WR_ADDR = 11'b01000000000;
parameter ST_GSU_RAM_WR_END = 11'b10000000000;

parameter SNES_DEAD_TIMEOUT = 17'd96000; // 1ms // FIXME: this and some other constant times should be adjusted for new clock rate.
parameter SNES_DEAD_TIMEOUT = 17'd85714; // 1ms

parameter ROM_CYCLE_LEN = 4'd7; // Increased from 6 due to tight timing on some sd2snes.

Expand Down

0 comments on commit 14adc83

Please sign in to comment.