This website requires JavaScript.
Explore
Help
Sign In
notafile
/
futilehdl
Watch
1
Star
0
Fork
You've already forked futilehdl
0
Code
Issues
Pull Requests
Projects
Releases
Wiki
Activity
a2411244f4
futilehdl
/
doc
/
examples
/
comparator.fut
8 lines
94 B
Plaintext
Raw
Normal View
History
Unescape
Escape
add comparator example
2022-01-04 19:37:54 +00:00
module comparator (
make examples parse with new parser
2022-02-02 00:13:33 +00:00
a: Logic<8>,
b: Logic<8>
) -> Logic
{
make operators work via desugaring
2022-01-17 18:20:51 +00:00
assign eq = ~reduce_or(a ^ b);
add comparator example
2022-01-04 19:37:54 +00:00
}