aboutsummaryrefslogtreecommitdiff
path: root/regress/AddNot.fir
blob: e238a0208949eb66618f78cfe3f1cebf9bbeda98 (plain)
1
2
3
4
5
6
7
; SPDX-License-Identifier: Apache-2.0
circuit AddNot:
  module AddNot:
    input a: UInt<8>
    input b: UInt<8>
    output o: UInt<9>
    o <= add(a, not(b))