From 340041bbfd87f5e7a6eab27e2f7b6e339ba69572 Mon Sep 17 00:00:00 2001 From: Uri Shaked Date: Sun, 19 Nov 2023 00:01:55 +0200 Subject: [PATCH] feat(rom): update config for latest OpenLane 2 DIE_AREA should be a list of numbers and not a string --- rom/config.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/rom/config.json b/rom/config.json index 00cddba..b2e43a1 100644 --- a/rom/config.json +++ b/rom/config.json @@ -3,7 +3,7 @@ "VERILOG_FILES": "dir::tt_um_chip_rom.v", "FP_SIZING": "absolute", - "DIE_AREA": "0 0 168.36 111.52", + "DIE_AREA": [0, 0, 168.36, 111.52], "FP_DEF_TEMPLATE": "ref::$DESIGN_DIR/../def/tt_block_1x1.def", "FP_IO_HLENGTH": 2,