From 3951621b5e16fb0183294d4fc5fbebfdeb39120d Mon Sep 17 00:00:00 2001 From: Luke Kenneth Casson Leighton Date: Thu, 23 May 2019 14:27:10 +0100 Subject: [PATCH] only want a single-bit transition --- src/experiment/score6600.py | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/src/experiment/score6600.py b/src/experiment/score6600.py index b265bf97..d4dcf4f1 100644 --- a/src/experiment/score6600.py +++ b/src/experiment/score6600.py @@ -329,8 +329,7 @@ class Scoreboard(Elaboratable): m.d.comb += shadows.s_good_i[0:n_int_fus].eq(go_wr_o[0:n_int_fus]) # work out the current-activated busy unit (by recording the old one) - with m.If(self.issue_o): # only update busy_prev if instruction issued - m.d.sync += busy_prev.eq(cu.busy_o) + m.d.sync += busy_prev.eq(cu.busy_o) m.d.comb += busy_curr.eq(~busy_prev & cu.busy_o) #--------- -- 2.30.2