From e42e3d8a08281c1131282a99bd70a929e1f30b8d Mon Sep 17 00:00:00 2001 From: Luke Kenneth Casson Leighton Date: Thu, 23 Dec 2021 16:23:34 +0000 Subject: [PATCH] disable unused cpu params pc_i and pc_i_ok --- libresoc/core.py | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/libresoc/core.py b/libresoc/core.py index ec1c029..561122f 100644 --- a/libresoc/core.py +++ b/libresoc/core.py @@ -247,6 +247,10 @@ class LibreSoC(CPU): o_pc_o = Signal(64), # not connected ) + # these have been taken out + #self.cpu_params['i_pc_i'] = Signal(64) + #self.cpu_params['i_pc_i_ok'] = 0 + if irq_en: # interrupts self.cpu_params['i_int_level_i'] = self.interrupt @@ -269,8 +273,6 @@ class LibreSoC(CPU): i_dmi_we_i = self.dmi_wr, o_dmi_ack_o = self.dmi_ack, )) - self.cpu_params['i_pc_i'] = Signal(64) - self.cpu_params['i_pc_i_ok'] = 0 # add clock select, pll output if "ls180" in variant and "pll" not in variant: -- 2.30.2