vishal_sonam
Full Member level 3
- Joined
- Jan 19, 2012
- Messages
- 187
- Helped
- 14
- Reputation
- 28
- Reaction score
- 14
- Trophy points
- 1,298
- Activity points
- 2,457
signal: A, B, X, Y, Z : bit;
comb3: process (......................)
begin
A <= X xor Y;
B <= Y and Z;
Z <= X nor Y;
end process;
comb3: process (......................)
begin
A <= X xor Y;
B <= Y and Z;
Z <= X nor Y;
end process;