diff options
author | lonkaars <loek@pipeframe.xyz> | 2023-02-20 13:11:21 +0100 |
---|---|---|
committer | lonkaars <loek@pipeframe.xyz> | 2023-02-20 13:11:21 +0100 |
commit | 77870488404563df2c18e4ec4719e767fff98919 (patch) | |
tree | 1aab1e16903a5c413a0df2add105d61c0e13319b /basys3/basys3.srcs/er_ram.vhd | |
parent | e608ff1230b1db80cb4d68e513fb05fc92774bdc (diff) |
PPU AUX memory finished and tested
Diffstat (limited to 'basys3/basys3.srcs/er_ram.vhd')
-rw-r--r-- | basys3/basys3.srcs/er_ram.vhd | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/basys3/basys3.srcs/er_ram.vhd b/basys3/basys3.srcs/er_ram.vhd index a35514c..f106d4e 100644 --- a/basys3/basys3.srcs/er_ram.vhd +++ b/basys3/basys3.srcs/er_ram.vhd @@ -15,7 +15,7 @@ entity er_ram is -- exposed register RAM WEN : in std_logic; -- write enable ADDR : in std_logic_vector(ADDR_W-1 downto 0); -- address line DATA : in std_logic_vector(DATA_W-1 downto 0); -- data input - REG : out std_logic_vector((ADDR_W*DATA_W)-1 downto 0)); -- exposed register output + REG : out std_logic_vector((ADDR_RANGE*DATA_W)-1 downto 0)); -- exposed register output end er_ram; architecture Behavioral of er_ram is |