From 2a53c52d5d46145d0a3831e58fc93d7166c191b9 Mon Sep 17 00:00:00 2001 From: Luke Kenneth Casson Leighton Date: Thu, 21 May 2020 11:43:02 +0100 Subject: [PATCH] branch output spec nia not cia --- src/soc/fu/branch/pipe_data.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/soc/fu/branch/pipe_data.py b/src/soc/fu/branch/pipe_data.py index 153f9bf0..13179c8f 100644 --- a/src/soc/fu/branch/pipe_data.py +++ b/src/soc/fu/branch/pipe_data.py @@ -67,7 +67,7 @@ class BranchInputData(IntegerData): class BranchOutputData(IntegerData): regspec = [('SPR', 'spr1', '0:63'), ('SPR', 'spr2', '0:63'), - ('PC', 'cia', '0:63')] + ('PC', 'nia', '0:63')] def __init__(self, pspec): super().__init__(pspec) self.spr1 = Data(64, name="spr1") -- 2.30.2