• R/O
  • HTTP
  • SSH
  • HTTPS

motonesfpga: Commit

Moto NES FPGA main repository


Commit MetaInfo

Revision6eaf702ca9bb0dbc459979253b8c522710cbc984 (tree)
Time2013-09-07 14:29:56
Authorastoria-d <astoria-d@mail...>
Commiterastoria-d

Log Message

- bug fix for vram write timing incorrect.

Change Summary

Incremental Difference

--- a/simulation/address_decoder.vhd
+++ b/simulation/address_decoder.vhd
@@ -220,7 +220,7 @@ begin
220220 nt1_ce_n <= '1';
221221 if (wr_n = '0') then
222222 --write
223- nt0_ce_n <= not clk;
223+ nt0_ce_n <= clk;
224224 elsif (rd_n = '0') then
225225 --read
226226 nt0_ce_n <= '0';
@@ -232,7 +232,7 @@ begin
232232 nt0_ce_n <= '1';
233233 if (wr_n = '0') then
234234 --write
235- nt1_ce_n <= not clk;
235+ nt1_ce_n <= clk;
236236 elsif (rd_n = '0') then
237237 --read
238238 nt1_ce_n <= '0';
@@ -248,7 +248,7 @@ begin
248248 nt1_ce_n <= '1';
249249 if (wr_n = '0') then
250250 --write
251- nt0_ce_n <= not clk;
251+ nt0_ce_n <= clk;
252252 elsif (rd_n = '0') then
253253 --read
254254 nt0_ce_n <= '0';
@@ -260,7 +260,7 @@ begin
260260 nt0_ce_n <= '1';
261261 if (wr_n = '0') then
262262 --write
263- nt1_ce_n <= not clk;
263+ nt1_ce_n <= clk;
264264 elsif (rd_n = '0') then
265265 --read
266266 nt1_ce_n <= '0';
Show on old repository browser