From 30a7ba8205da19080bccb3efc4225bfb68b457fe Mon Sep 17 00:00:00 2001 From: Jacob Lifshay Date: Thu, 22 Sep 2022 19:59:40 -0700 Subject: [PATCH] add RC input to isa/caller.py --- src/openpower/decoder/isa/caller.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/openpower/decoder/isa/caller.py b/src/openpower/decoder/isa/caller.py index 166c3e2e..5f54a01e 100644 --- a/src/openpower/decoder/isa/caller.py +++ b/src/openpower/decoder/isa/caller.py @@ -376,6 +376,8 @@ def get_pdecode_idx_in(dec2, name): return in3, in3_isvec # XXX TODO, RC doesn't exist yet! elif name == 'RC': + if in3_sel == In3Sel.RC.value: + return in3, in3_isvec assert False, "RC does not exist yet" elif name == 'RS': if in1_sel == In1Sel.RS.value: -- 2.30.2