OSDN Git Service
(root)
/
motonesfpga
/
motonesfpga.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(from parent 1:
28dd3d8
)
minor fix.
author
astoria-d
<astoria-d@mail.goo.ne.jp>
Sat, 8 Jun 2013 10:32:27 +0000
(19:32 +0900)
committer
astoria-d
<astoria-d@mail.goo.ne.jp>
Sat, 8 Jun 2013 10:32:27 +0000
(19:32 +0900)
simulation/address_decoder.vhd
patch
|
blob
|
history
diff --git
a/simulation/address_decoder.vhd
b/simulation/address_decoder.vhd
index
96c8ebd
..
690ee95
100644
(file)
--- a/
simulation/address_decoder.vhd
+++ b/
simulation/address_decoder.vhd
@@
-81,7
+81,8
@@
begin
begin
-- ram range : 0 - 0x2000.
-- 0x2000 is 0010_0000_0000_0000
- if (addr < "0010000000000000") then
+ if ((addr(15) or addr(14) or addr(13)) = '0') then
+ --if (addr < "0010000000000000") then
if (R_nW = '0') then
--write
--write timing slided by half clock.
@@
-96,7
+97,6
@@
begin
else
ram_ce_n <= '1';
end if;
- --if ((addr(15) or addr(14) or addr(13)) = '1') then
else
ram_ce_n <= '1';
end if;