Signed-off-by: James Cherry <cherry@parallaxsw.com>
This commit is contained in:
James Cherry
2026-01-03 16:59:35 -08:00
parent 7f65853afa
commit d42b821c00
384 changed files with 33435 additions and 32562 deletions

View File

@@ -55,8 +55,8 @@ enum class StateInternalValue {
class StatetableRow;
typedef std::vector<StateInputValue> StateInputValues;
typedef std::vector<StateInternalValue> StateInternalValues;
using StateInputValues = std::vector<StateInputValue>;
using StateInternalValues = std::vector<StateInternalValue>;
// Register/Latch
class Sequential
@@ -81,14 +81,14 @@ protected:
// clocked_on/next_state for registers
// enable/data for latches
Sequential(bool is_register,
FuncExpr *clock,
FuncExpr *data,
FuncExpr *clear,
FuncExpr *preset,
LogicValue clr_preset_out,
LogicValue clr_preset_out_inv,
LibertyPort *output,
LibertyPort *output_inv);
FuncExpr *clock,
FuncExpr *data,
FuncExpr *clear,
FuncExpr *preset,
LogicValue clr_preset_out,
LogicValue clr_preset_out_inv,
LibertyPort *output,
LibertyPort *output_inv);
bool is_register_;
FuncExpr *clock_;