From bc275e623a509fc8d48e254b1078acdaa3285311 Mon Sep 17 00:00:00 2001 From: nella Date: Fri, 20 Feb 2026 13:17:22 +0100 Subject: [PATCH] Add missing categories. --- kernel/celltypes.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/kernel/celltypes.h b/kernel/celltypes.h index c7126dfca..3535542b1 100644 --- a/kernel/celltypes.h +++ b/kernel/celltypes.h @@ -93,12 +93,12 @@ struct CellTypes setup_module(module); } - void setup_internals() { enabled_cats |= BIT_INTERNALS_OTHER | BIT_INTERNALS_EVAL; } + void setup_internals() { enabled_cats |= BIT_INTERNALS_OTHER | BIT_INTERNALS_EVAL | BIT_INTERNALS_FF | BIT_INTERNALS_ANYINIT | BIT_INTERNALS_MEM; } void setup_internals_eval() { enabled_cats |= BIT_INTERNALS_EVAL; } void setup_internals_ff() { enabled_cats |= BIT_INTERNALS_FF; } void setup_internals_anyinit() { enabled_cats |= BIT_INTERNALS_ANYINIT; } void setup_internals_mem() { enabled_cats |= BIT_INTERNALS_FF | BIT_INTERNALS_MEM; } - void setup_stdcells() { enabled_cats |= BIT_STDCELLS_EVAL | BIT_STDCELLS_TRISTATE; } + void setup_stdcells() { enabled_cats |= BIT_STDCELLS_EVAL | BIT_STDCELLS_TRISTATE | BIT_STDCELLS_FF; } void setup_stdcells_eval() { enabled_cats |= BIT_STDCELLS_EVAL; } void setup_stdcells_mem() { enabled_cats |= BIT_STDCELLS_FF; }