From bf14ef6580842012e132cb9d892cbaeb6176be5e Mon Sep 17 00:00:00 2001 From: Luke Kenneth Casson Leighton Date: Tue, 18 Jun 2019 10:28:15 +0100 Subject: [PATCH] whoops syntax error --- src/experiment/compldst.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/experiment/compldst.py b/src/experiment/compldst.py index 18acbff8..77ad39dd 100644 --- a/src/experiment/compldst.py +++ b/src/experiment/compldst.py @@ -215,7 +215,7 @@ class LDSTCompUnit(Elaboratable): m.d.comb += self.alu.p_valid_i.eq(1) # so indicate valid # put the register directly onto the output bus on a go_write - with m.If((self.go_wr_i): + with m.If(self.go_wr_i): comb += self.data_o.eq(data_r) # put the register directly onto the address bus -- 2.30.2