Skip to content

Commit

Permalink
Use FX68K for 68000 mode for cycle accuracy.
Browse files Browse the repository at this point in the history
  • Loading branch information
sorgelig committed Nov 11, 2019
1 parent e582d6a commit 676031a
Show file tree
Hide file tree
Showing 13 changed files with 7,342 additions and 126 deletions.
6 changes: 3 additions & 3 deletions Minimig.sv
Original file line number Diff line number Diff line change
Expand Up @@ -243,13 +243,13 @@ always @(posedge clk_114) begin
cpu_ph1 <= 0;
cpu_ph2 <= 0;
case (div[3:2])
0: cpu_ph1 <= 1;
2: cpu_ph2 <= 1;
0: cpu_ph2 <= 1;
2: cpu_ph1 <= 1;
endcase
end
end

ram_cs <= ~(ram_ready & en) & ram_sel;
ram_cs <= ~(ram_ready & en & cpucfg[1]) & ram_sel;
end


Expand Down
1 change: 1 addition & 0 deletions files.qip
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
set_global_assignment -name QIP_FILE src/tg68k/TG68K.qip
set_global_assignment -name QIP_FILE src/m68k/m68k.qip
set_global_assignment -name QIP_FILE src/fx68k/fx68k.qip
set_global_assignment -name QIP_FILE src/ram.qip
set_global_assignment -name QIP_FILE src/agnus.qip
set_global_assignment -name QIP_FILE src/cia.qip
Expand Down
Loading

0 comments on commit 676031a

Please sign in to comment.