Code generation fix
All checks were successful
BUILD / test (push) Successful in 1m56s

This commit is contained in:
Lukas Plevac 2025-01-19 18:34:06 +01:00
parent db25df54cd
commit 6c8c791fb5

View File

@ -26,6 +26,7 @@ class FullAdder(ThreeInputOneBitCircuit):
name (str, optional): Name of full adder. Defaults to "fa".
"""
use_verilog_instance = False
disable_generation = False
def __init__(self, a: Wire = Wire(name="a"), b: Wire = Wire(name="b"), c: Wire = Wire(name="cin"), prefix: str = "", name: str = "fa"):
super().__init__(a, b, c, prefix=prefix, name=name)