Added additional IO outputs to 6502 designs

Change-Id: I6253c507e766f8af13e52556818f725fda198cb4
This commit is contained in:
David Banks 2015-06-29 14:47:31 +01:00
parent 6d0ec41db0
commit 8a2615d6b3
2 changed files with 8 additions and 4 deletions

View File

@ -78,8 +78,10 @@ begin
nRSTout => nRST,
CountCycle => Rdy,
Regs => (others => '0'),
RdOut => open,
WrOut => open,
RdMemOut=> open,
WrMemOut=> open,
RdIOOut => open,
WrIOOut => open,
AddrOut => open,
DataOut => open,
DataIn => (others => '0'),

View File

@ -129,8 +129,10 @@ begin
tcclk => tcclk,
Regs(63 downto 0) => Regs,
Regs(255 downto 64) => (others <= '0'),
RdOut => memory_rd,
WrOut => memory_wr,
RdMemOut=> memory_rd,
WrMemOut=> memory_wr,
RdIOOut => open,
WrIOOut => open,
AddrOut => memory_addr,
DataOut => memory_dout,
DataIn => memory_din,