D
Dave Pollum
Guest
On Dec 4, 8:48 am, jid...@hotmail.com wrote:
values to input port "inp_i".
-Dave Pollum
I don't know how to implement pull-up/pull-down, but you can't assignHello,
I am using Spartan-3 XC31000. You can enable on/off pull-up/pull-down
resistors with ISE; however, i would like to do this in VHDL so that i
can enable them during runtime. At first I thought these lines would
synthese, but I was wrong.
entity pullup is
port (inp_i :in std_logic;
outp_o : out std_logic);
end pullup;
architecture rtl of pullup is
signal s_inp_i : std_logic;
begin
s_inp_i <= 'H';
s_inp_i <= inp_i;
outp_o <= inp_i;
end rtl;
Any Idea how to do this?
Thanks;
JJ
values to input port "inp_i".
-Dave Pollum