Changed to timing of writes slightly as AtomMMC was occasionally failing on New Atom with 0.26. Verified on Beeb. Upped version to 0.27

Change-Id: Iad7639e2984236e9644c5db0331eeec5cd8a1a09
This commit is contained in:
David Banks 2015-06-17 17:47:04 +01:00
parent 2599920e75
commit a3cd8ceae4
2 changed files with 3 additions and 3 deletions

View File

@ -113,7 +113,7 @@ char *triggerStrings[NUM_TRIGGERS] = {
};
#define VERSION "0.26"
#define VERSION "0.27"
#ifdef EMBEDDED_6502
#define NUM_CMDS 24

View File

@ -163,8 +163,8 @@ begin
end if;
end process;
Data <= memory_dout when cpu_clk = '0' and memory_wr = '1' else
Dout when cpu_clk = '0' and R_W_n_int = '0' and memory_rd = '0' else
Data <= memory_dout when Phi0_c = '1' and memory_wr = '1' else
Dout when Phi0_c = '1' and R_W_n_int = '0' and memory_rd = '0' else
(others => 'Z');
clk_gen : process(clock49)