futilehdl/doc/examples/counter.fut

7 lines
110 B
Plaintext
Raw Permalink Normal View History

2022-04-07 10:53:34 +00:00
proc counter() -> Logic<8> {
reg count = 8'0;
2022-08-07 16:14:55 +00:00
// TODO: no addition yet :(
next count = count ^ 1;
2022-04-07 10:53:34 +00:00
count
}