Go Back   Velocity Reviews > Newsgroups > VHDL
User Name
Password
Register FAQ Members List Calendar Search Today's Posts Mark Forums Read

Reply

VHDL - sensitivity list confusion

 
Thread Tools Search this Thread
Old 09-25-2006, 03:16 PM   #1
Unhappy sensitivity list confusion


Hi all....i am student learning the VHDL coding this semester.....recently i found that the process statement with its sensitivity list does not work the way it is said in the text book.....although i never insert a particular signal into the sensitivity list....the output is changes whenever the particular signal changes value...... for example

-- h
library IEEE;
use IEEE.std_logic_1164.all;
use IEEE.std_logic_arith.all;

entity h is
port (
d : out STD_LOGIC;
c : in STD_LOGIC;
a : in STD_LOGIC;
b : in STD_LOGIC
);
end h;

architecture h_arch of h is
begin
process(a)
begin

d<=a and b and c;


end h_arch;


the d value changes each time the value of either b or c changes although i mantain the value of a...

Can anybody help me in this problem???

Thanx!!!!!!!


traxx84
traxx84 is offline   Reply With Quote
Reply


Thread Tools Search this Thread
Search this Thread:

Advanced Search

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

vB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Forum Jump