Email: Password: Remember Me | Create Account (Free)

Back to Subject List

Old thread has been locked -- no new posts accepted in this thread
???
03/05/03 01:10
Read: times


 
#40732 - RE: 80C320 with PSD and Lattice CLPD
Responding to: ???'s previous message
Well if you want to use a vhdl buffer with a tristate output then the way I would do it is something like this

entity tris is
port(D_in: in std_logic_vector(7 downto 0);
D_out:out std_logic_vector(7 downto 0);
o_en :in std_logic;
clk:in std_logic);
end tris;
architecture rtl of tris is
begin
process(o_en,clk,D_in)
begin
if o_en='1' then --active low oe
D_out<=(others=>'Z');
elsif falling_edge(clk) then
D_out<=D_in;
endif;
end process;
end rtl;

it uses an implied latch to produce d_type latches because there is no definition for the state where O_EN is low and its not a rising clock which makes VHDL insert latches.

List of 19 messages in thread
TopicAuthorDate
80C320 with PSD and Lattice CLPD            01/01/70 00:00      
   RE: 80C320 with PSD and Lattice CLPD            01/01/70 00:00      
   RE: 80C320 with PSD and Lattice CLPD            01/01/70 00:00      
      RE: 80C320 with PSD and Lattice CLPD            01/01/70 00:00      
         RE: 80C320 with PSD and Lattice CLPD            01/01/70 00:00      
            RE: 80C320 with PSD and Lattice CLPD            01/01/70 00:00      
            RE: 80C320 with PSD and Lattice CLPD            01/01/70 00:00      
               RE: 80C320 with PSD and Lattice CLPD            01/01/70 00:00      
               RE: 80C320 with PSD and Lattice CLPD            01/01/70 00:00      
            RE: 80C320 with PSD and Lattice CLPD            01/01/70 00:00      
               RE: 80C320 with PSD and Lattice CLPD            01/01/70 00:00      
   RE: 80C320 with PSD and Lattice CLPD            01/01/70 00:00      
      RE: 80C320 with PSD and Lattice CLPD            01/01/70 00:00      
   RE: 80C320 with PSD and Lattice CLPD            01/01/70 00:00      
      RE: 80C320 with PSD and Lattice CLPD            01/01/70 00:00      
         RE: 80C320 with PSD and Lattice CLPD            01/01/70 00:00      
            RE: 80C320 with PSD and Lattice CLPD            01/01/70 00:00      
   RE: 80C320 with PSD and Lattice CLPD            01/01/70 00:00      
   RE: 80C320 with PSD and Lattice CLPD            01/01/70 00:00      

Back to Subject List