Initial commit
This commit is contained in:
14
Libs/AhbLite/hdl/ahbMuxConnector_RTL.vhd
Normal file
14
Libs/AhbLite/hdl/ahbMuxConnector_RTL.vhd
Normal file
@@ -0,0 +1,14 @@
|
||||
ARCHITECTURE RTL OF ahbMuxConnector IS
|
||||
BEGIN
|
||||
|
||||
hSel <= hSelV(index);
|
||||
|
||||
hRDataV(index) <= std_logic_vector(hRData);
|
||||
hReadyV(index) <= hReady;
|
||||
hRespV(index) <= hResp;
|
||||
|
||||
hRDataV <= (others => (others => 'Z'));
|
||||
hReadyV <= (others => 'Z');
|
||||
hRespV <= (others => 'Z');
|
||||
|
||||
END ARCHITECTURE RTL;
|
||||
Reference in New Issue
Block a user