0 votes
in VHDL by (200 points)

How to use signed in VHDL?

2 Answers

0 votes
by (260 points)

In VHDL "signed" is a type of vector element that's intended for signed arithmetic operations ( such as comparing to numeric values , adding , subtracting , multiplying , etc... ) Negative numbers are represented using 2's complement. Although arithmetic operations can sometimes be performed on the std_logic_vector type - this is strongly discouraged.

Example 1 :

signal celcius_temperature : unsigned ( 15 downto 0 ) ;
signal water_freeze_alarm : std_logic ;

water_freeze_alarm <= '1' celcius_temperature < 0 else '0' ;
Example 2 :
signal number_1 : signed ( 7 downto 0 ) ;   -- Can accept both possitive and negative number ( 2's complement )     
signal number_2 : signed ( 7 downto 0 ) ;   -- Can accept both possitive and negative number ( 2's complement )
signal number_3 : signed ( 15 downto 0 ) ;  -- Can accept both possitive and negative number ( 2's complement )

number_3 <= number_1 * number_2 ;
0 votes
by (300 points)

A signal in VHDL can be defined as either signed or unsigned. An unsigned signal is positive only, but if a signal is defined as signed it can be either positive or negative. Internally, FPGA uses 2's complement to represent negative numbers.

For example, a signed 3-bit signal '011' is interpreted as '3' and '101' is interpreted as '-3'. It is important to note here that if the 3-bit signal was defined as unsigned the '101' would have been interpreted as '5'. This representation of signals is important for performing arithmetic operations.

To use this functionality, numeric_std package must be used which is part of the ieee library. The syntax is as follows:

signal <name> : signed(<N-bits> downto 0) := <initial_value>;

Hardware Coder Community

© 2022 by Hardware Coder. User contributions are licensed under cc by-sa 4.0 with attribution required. Attribution means a link to the question, answer, user, etc on this site.

This site is owned and operated by Hardware Coder in McKinney, Texas.

Send Us A Message
About Us

By using this site, you agree to the following:

Privacy Policy
Terms and Conditions
DMCA Policy
Earnings Disclaimer
Legal Disclaimer

...