From df339f4f3c1f08c887b64c7c293579a3d236b8da Mon Sep 17 00:00:00 2001 From: gatecat Date: Mon, 29 Mar 2021 21:25:14 +0100 Subject: [PATCH] nexus: Default HF_OSC_EN to ENABLED Signed-off-by: gatecat --- nexus/fasm.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/nexus/fasm.cc b/nexus/fasm.cc index 6fcfbb5d..e0716f36 100644 --- a/nexus/fasm.cc +++ b/nexus/fasm.cc @@ -440,7 +440,7 @@ struct NexusFasmWriter BelId bel = cell->bel; push_tile(bel.tile); push_belname(bel); - write_enum(cell, "HF_OSC_EN"); + write_enum(cell, "HF_OSC_EN", "ENABLED"); write_enum(cell, "HF_FABRIC_EN"); write_enum(cell, "HFDIV_FABRIC_EN", "ENABLED"); write_enum(cell, "LF_FABRIC_EN");