mirror of
https://github.com/hoglet67/AtomBusMon.git
synced 2024-12-22 01:30:18 +00:00
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:
parent
2599920e75
commit
a3cd8ceae4
@ -113,7 +113,7 @@ char *triggerStrings[NUM_TRIGGERS] = {
|
||||
};
|
||||
|
||||
|
||||
#define VERSION "0.26"
|
||||
#define VERSION "0.27"
|
||||
|
||||
#ifdef EMBEDDED_6502
|
||||
#define NUM_CMDS 24
|
||||
|
@ -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)
|
||||
|
Loading…
Reference in New Issue
Block a user