mirror of
https://github.com/Klagarge/Cursor.git
synced 2025-06-25 20:02:31 +00:00
Initial commit
This commit is contained in:
5
Libs/IO/hdl/tristateBufferSigned_sim.vhd
Normal file
5
Libs/IO/hdl/tristateBufferSigned_sim.vhd
Normal file
@ -0,0 +1,5 @@
|
||||
ARCHITECTURE sim OF tristateBufferSigned IS
|
||||
BEGIN
|
||||
out1 <= in1 after delay when OE = '1' else (others => 'Z') after delay;
|
||||
END ARCHITECTURE sim;
|
||||
|
5
Libs/IO/hdl/tristateBufferULogicVector_sim.vhd
Normal file
5
Libs/IO/hdl/tristateBufferULogicVector_sim.vhd
Normal file
@ -0,0 +1,5 @@
|
||||
ARCHITECTURE sim OF tristateBufferULogicVector IS
|
||||
BEGIN
|
||||
out1 <= std_logic_vector(in1) after delay when OE = '1' else (others => 'Z') after delay;
|
||||
END ARCHITECTURE sim;
|
||||
|
5
Libs/IO/hdl/tristateBufferULogic_sim.vhd
Normal file
5
Libs/IO/hdl/tristateBufferULogic_sim.vhd
Normal file
@ -0,0 +1,5 @@
|
||||
ARCHITECTURE sim OF tristateBufferULogic IS
|
||||
BEGIN
|
||||
out1 <= in1 after delay when OE = '1' else 'Z' after delay;
|
||||
END ARCHITECTURE sim;
|
||||
|
5
Libs/IO/hdl/tristateBufferUnsigned_sim.vhd
Normal file
5
Libs/IO/hdl/tristateBufferUnsigned_sim.vhd
Normal file
@ -0,0 +1,5 @@
|
||||
ARCHITECTURE sim OF tristateBufferUnsigned IS
|
||||
BEGIN
|
||||
out1 <= in1 after delay when OE = '1' else (others => 'Z') after delay;
|
||||
END ARCHITECTURE sim;
|
||||
|
@ -0,0 +1,4 @@
|
||||
INCLUDE list {
|
||||
DEFAULT atom 1
|
||||
}
|
||||
DIALECT atom VHDL_2008
|
@ -0,0 +1,4 @@
|
||||
INCLUDE list {
|
||||
DEFAULT atom 1
|
||||
}
|
||||
DIALECT atom VHDL_2008
|
@ -0,0 +1,4 @@
|
||||
INCLUDE list {
|
||||
DEFAULT atom 1
|
||||
}
|
||||
DIALECT atom VHDL_2008
|
@ -0,0 +1,4 @@
|
||||
INCLUDE list {
|
||||
DEFAULT atom 1
|
||||
}
|
||||
DIALECT atom VHDL_2008
|
@ -0,0 +1 @@
|
||||
DIALECT atom VHDL_2008
|
@ -0,0 +1 @@
|
||||
DIALECT atom VHDL_2008
|
@ -0,0 +1 @@
|
||||
DIALECT atom VHDL_2008
|
@ -0,0 +1 @@
|
||||
DIALECT atom VHDL_2008
|
2
Libs/IO/hds/_tristatebuffersigned._epf
Normal file
2
Libs/IO/hds/_tristatebuffersigned._epf
Normal file
@ -0,0 +1,2 @@
|
||||
DEFAULT_ARCHITECTURE atom sim
|
||||
DEFAULT_FILE atom tristateBufferSigned_sim.vhd
|
2
Libs/IO/hds/_tristatebufferulogicvector._epf
Normal file
2
Libs/IO/hds/_tristatebufferulogicvector._epf
Normal file
@ -0,0 +1,2 @@
|
||||
DEFAULT_ARCHITECTURE atom sim
|
||||
DEFAULT_FILE atom tristateBufferULogicVector_sim.vhd
|
1509
Libs/IO/hds/tristate@buffer@signed/symbol.sb
Normal file
1509
Libs/IO/hds/tristate@buffer@signed/symbol.sb
Normal file
File diff suppressed because it is too large
Load Diff
1480
Libs/IO/hds/tristate@buffer@u@logic/symbol.sb
Normal file
1480
Libs/IO/hds/tristate@buffer@u@logic/symbol.sb
Normal file
File diff suppressed because it is too large
Load Diff
1504
Libs/IO/hds/tristate@buffer@u@logic@vector/symbol.sb
Normal file
1504
Libs/IO/hds/tristate@buffer@u@logic@vector/symbol.sb
Normal file
File diff suppressed because it is too large
Load Diff
1509
Libs/IO/hds/tristate@buffer@unsigned/symbol.sb
Normal file
1509
Libs/IO/hds/tristate@buffer@unsigned/symbol.sb
Normal file
File diff suppressed because it is too large
Load Diff
Reference in New Issue
Block a user