1-Bit Full Adder
import dfhdl.* //import all the DFHDL goodness
@top class FullAdder1 extends EDDesign:
val a, b, c_in = Bit <> IN
val sum, c_out = Bit <> OUT
sum <> a ^ b ^ c_in
c_out <> a && b || b && c_in || c_in && a
////////////////////////////////////////////////////////////////////////////////////////////////
// DFHDL Compiler Options: //
////////////////////////////////////////////////////////////////////////////////////////////////
// Select backend compiler:
given options.CompilerOptions.Backend = backends.vhdl
// Uncomment to enable printing design code after elaboration (before compilation):
// given options.ElaborationOptions.PrintDFHDLCode = true
// Uncomment to enable printing design code after compilation:
// given options.CompilerOptions.PrintDFHDLCode = true
////////////////////////////////////////////////////////////////////////////////////////////////