bsbs
Junior Member level 2
- Joined
- Apr 22, 2011
- Messages
- 20
- Helped
- 0
- Reputation
- 0
- Reaction score
- 0
- Trophy points
- 1,281
- Activity points
- 1,424
Im getting :32:14:32:24|No matching overload for "<" error for the following code
Im using std_logic_signed .
Code VHDL - [expand] 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 Process (clk, RST) BEGIN IF RST = '0' THEN acc <= (Others => '0') ; ELSIF (Clk = '1' and Clk'event) THEN If acc = max THEN acc <= (others => '0') ; ELSE acc <= acc + '1' ; output <= acc < input; END IF ; END IF ; END PROCESS ;
Im using std_logic_signed .
Last edited by a moderator: