From: Luke Kenneth Casson Leighton Date: Sun, 24 May 2020 11:59:37 +0000 (+0100) Subject: spelling mistake in variable X-Git-Tag: div_pipeline~891 X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=3588ef20ea852726a5b421fd17dba586a7f491c0;p=soc.git spelling mistake in variable --- diff --git a/src/soc/fu/trap/pipe_data.py b/src/soc/fu/trap/pipe_data.py index 0bc11897..3bf43e93 100644 --- a/src/soc/fu/trap/pipe_data.py +++ b/src/soc/fu/trap/pipe_data.py @@ -28,7 +28,7 @@ class TrapInputData(IntegerData): def eq(self, i): lst = super().eq(i) return lst + [self.a.eq(i.a), self.b.eq(i.b), - self.cia.eq(i.nia), self.msr.eq(i.msr)] + self.cia.eq(i.cia), self.msr.eq(i.msr)] class TrapOutputData(IntegerData):