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))