Removed zero check

git-svn-id: http://moon:8086/svn/vhdl/trunk@16 cc03376c-175c-47c8-b038-4cd826a8556b
This commit is contained in:
2008-09-20 21:44:03 +00:00
parent 01e9796a47
commit 3080c176c2
-1
View File
@@ -46,7 +46,6 @@ architecture Behavioral of bcu is
begin
flags.eq <= '1' when op1_in = op2_in else '0' after 3 ns;
flags.z <= '1' when op1_in = (data_width-1 downto 0 => '0') else '0' after 2 ns;
flags.ltz <= op1_in(op1_in'left) after 1 ns;
--------------------------------------------------------------------------