Fix one arg sw generation path

This commit is contained in:
Jenny Huang 2023-09-09 07:56:11 -07:00
parent 389e117c1a
commit 57f83750b6
1 changed files with 1 additions and 1 deletions

View File

@ -50,7 +50,7 @@ def cleanRoccArg(body):
used, returns False if the argument should be ignored."""
reIgnore = re.compile('ap_clk.*|ap_rst.*|\S+_req_full_n|\S+_rsp_empty_n')
reBaseName = re.compile('ap_(\S+)|(\S+)_datain')
reBaseName = re.compile('ap_(\S+)|(\S+)_datain|(\S+);')
if reIgnore.match(body):
return None