Differences
This shows you the differences between two versions of the page.
| Both sides previous revision Previous revision | |||
| dt-code-sequ [2014/01/08 10:58] – flipflop process -> concurrent beckmanf | dt-code-sequ [2014/01/08 11:02] (current) – flipflop process -> concurrent beckmanf | ||
|---|---|---|---|
| Line 69: | Line 69: | ||
| begin | begin | ||
| - | ff_p : process(clk, | + | q <= ' |
| - | begin | + | |
| - | if reset_n | + | |
| - | q <= ' | + | |
| - | elsif rising_edge(clk) | + | |
| - | q <= new_q; | + | |
| - | end if; | + | |
| - | end process ff_p; | + | |
| new_q <= not q; | new_q <= not q; | ||
| - | end; | + | end architecture rtl; |
| </ | </ | ||