From 3a1a314b75ca536ef01efee78fea61fcc5082273 Mon Sep 17 00:00:00 2001 From: Peter Gadfort Date: Mon, 28 Oct 2024 12:55:01 -0400 Subject: [PATCH] update interface to lambdalib --- hw/asic_top.v | 8 ++++++++ python-requirements.txt | 4 ++-- 2 files changed, 10 insertions(+), 2 deletions(-) diff --git a/hw/asic_top.v b/hw/asic_top.v index 9c28dd9..f20fe8a 100644 --- a/hw/asic_top.v +++ b/hw/asic_top.v @@ -133,18 +133,26 @@ module asic_top ( .no_a (no_dout), .no_ie (no_ie), .no_oe (~no_oen), + .no_pe ('b0), + .no_ps ('b0), .no_cfg (no_tech_cfg), .ea_a (ea_dout), .ea_ie (ea_ie), .ea_oe (~ea_oen), + .ea_pe ('b0), + .ea_ps ('b0), .ea_cfg (ea_tech_cfg), .so_a (so_dout), .so_ie (so_ie), .so_oe (~so_oen), + .so_pe ('b0), + .so_ps ('b0), .so_cfg (so_tech_cfg), .we_a (we_dout), .we_ie (we_ie), .we_oe (~we_oen), + .we_pe ('b0), + .we_ps ('b0), .we_cfg (we_tech_cfg)); endmodule diff --git a/python-requirements.txt b/python-requirements.txt index f2447a4..1386b3d 100644 --- a/python-requirements.txt +++ b/python-requirements.txt @@ -2,5 +2,5 @@ bin2coe hjson mako siliconcompiler >= 0.27.0 -lambdapdk >= 0.1.26 -lambdalib >= 0.2.7 +lambdapdk >= 0.1.37 +lambdalib >= 0.3.0