Exercise #1: Introduction to simulators and Synthesis
| CONT_SIG value | OUT_SIG value |
| 1 | A_IN |
| 0 | B_IN |
Figure 1: Counter
with enable and reset
| Signal | Type | Description |
| clk | input | Clock signal. Counter counts on the rising edge of the clock signal. |
| rstr_n | input | When '0' then resets the counter to zero |
| ENABLE | input | If the enable signal is 1, counter is counting up, Otherwise counter is stopped. |
| LED | output | Represents the current output value of the counter (31st bit). |
Figure 2: screenshot of finished implementation