aboutsummaryrefslogtreecommitdiff
path: root/regress/AddNot.fir
blob: 38c72a16b201cde989166b738b1a591ccea87f89 (plain)
1
2
3
4
5
6
circuit AddNot:
  module AddNot:
    input a: UInt<8>
    input b: UInt<8>
    output o: UInt<9>
    o <= add(a, not(b))