Arithmetic Function
understand this operation
PORT ( a : IN INTEGER RANGE 0 TO 16;
b : IN INTEGER RANGE 0 TO 16;
sum : OUT INTEGER RANGE 0 TO 32);
ARCHITECTURE example OF opr IS
adder_body:PROCESS (a, b)
- Note: Remember the Library STD and the Package
Standard do not need to be referenced.