Prefered ieee libraries?



I'm at a critical point before I build up too much code.

Which is the more preferred/forward thinking approach?

library IEEE;
use ieee.std_logic_1164.all;
use ieee.std_logic_arith.all;
use ieee.std_logic_unsigned.all;
-- then used to_integer, etc.

or

library IEEE;
use ieee.std_logic_1164.all;
use ieee.numeric_std.all;
-- then use conv_integer, etc.

Thanks! Hope this isn't a question of religion...

-Dave


--
David Ashley http://www.xdr.com/dash
Embedded linux, device drivers, system architecture
.



Relevant Pages

  • Re: Prefered ieee libraries?
    ... Ray Andraka wrote: ... Which is the more preferred/forward thinking approach? ... library IEEE; ... btw, to_integer belongs with ieee.numeric_std, and conv_integer goes ...
    (comp.arch.fpga)
  • Re: Prefered ieee libraries?
    ... David Ashley wrote: ... Which is the more preferred/forward thinking approach? ... library IEEE; ... btw, to_integer belongs with ieee.numeric_std, and conv_integer goes with std_logic_unsigned/signed. ...
    (comp.arch.fpga)