We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent f9ed2f3 commit e5e0df4Copy full SHA for e5e0df4
pmgen.py
@@ -819,6 +819,11 @@ def process_pmgfile(f, filename):
819
print(" }", file=f)
820
821
print("", file=f)
822
+ # BEGIN: Code added to original one in order to handle case of Jira-348 (Awais)
823
+ if (customize_file):
824
+ if ((block["cell"] == "ff") and prefix == "rs_dsp_macc"):
825
+ print(" rollback = 1;", file=f)
826
+ # END: Code added to original one in order to handle case of Jira-348 (Awais)
827
print(" {} = nullptr;".format(block["cell"]), file=f)
828
829
if block["optional"]:
0 commit comments