Not driving multiple ports now

This commit is contained in:
Yannick Reiß 2024-01-31 13:16:09 +01:00
parent c1ddd00634
commit 34bc6162ed
No known key found for this signature in database
GPG Key ID: 5A3AF456F0A0338C
1 changed files with 3 additions and 2 deletions

View File

@ -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,