Not driving multiple ports now
This commit is contained in:
parent
c1ddd00634
commit
34bc6162ed
|
@ -45,6 +45,7 @@ architecture Implementation of Cpu16 is
|
||||||
signal PcEnable : std_logic := '0';
|
signal PcEnable : std_logic := '0';
|
||||||
signal Jump : std_logic := '0';
|
signal Jump : std_logic := '0';
|
||||||
signal I2CClient : std_logic_vector(15 downto 0) := (others => '0');
|
signal I2CClient : std_logic_vector(15 downto 0) := (others => '0');
|
||||||
|
signal I2CClientOut : std_logic_vector(15 downto 0) := (others => '0');
|
||||||
signal I2CServer : std_logic_vector(15 downto 0) := (others => '0');
|
signal I2CServer : std_logic_vector(15 downto 0) := (others => '0');
|
||||||
begin
|
begin
|
||||||
|
|
||||||
|
@ -125,8 +126,8 @@ begin
|
||||||
ClientR => I2CClient,
|
ClientR => I2CClient,
|
||||||
ServerR => I2CServer,
|
ServerR => I2CServer,
|
||||||
SDA_Out => SDA,
|
SDA_Out => SDA,
|
||||||
SDL_Out => SDA,
|
SDL_Out => SDL,
|
||||||
ClientW => I2CClient
|
ClientW => I2CClientOut
|
||||||
);
|
);
|
||||||
|
|
||||||
AluSetInput : process(ImmediateValue, InstructionCounter, RegisterDataOut1,
|
AluSetInput : process(ImmediateValue, InstructionCounter, RegisterDataOut1,
|
||||||
|
|
Loading…
Reference in New Issue