I am creating a VHDL file with integers. How would I create a NOT (INPUT) using
ID: 1810185 • Letter: I
Question
I am creating a VHDL file with integers. How would I create a NOT (INPUT) using arithmatic?
here is the direction from the assignment. I only need to know how to invert the input for output. or NOT A using addition and subtraction.
1. Design, simulate and program the eSOC III board for a 4-bit, 8-function ALU to implement the operations shown in Figure 3.5. [Hint: The simplest method to implement this circuit is using INTEGER signal types. The only problem is that the NOT operation will not work with INTEGER signal types, so the operations to implement NOT A and NOT B need to be defined in arithmetic terms. To do this, simply determine how to create a 1
Explanation / Answer
1, for not GATElibrary ieee; use ieee.std_logic_1164.all; entity not_Gate is port( a : in std_logic; b: out std_logic); end not_Gate; architecture program of notGate is begin b q q q q q q q qRelated Questions
Navigate
Integrity-first tutoring: explanations and feedback only — we do not complete graded work. Learn more.