We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Hi, there is an issue when parsing lb and lh instructions:
lw s2, 8(sp) #works lb s2, 8(sp) #throws error lh s2, 8(sp) #throws error
the issue is in line 454 of convert.py:
elif clean[0] == "lw": #<--lb and lh should be added res.append(self.I_type(clean[0], self.__reg_map(clean[3]), clean[2], self.__reg_map(clean[1])))
it works when changing this line:
elif clean[0] == "lw" or clean[0] == "lb" or clean[0] == "lh": res.append(self.I_type(clean[0], self.__reg_map(clean[3]), clean[2], self.__reg_map(clean[1])))
BR, David
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Hi,
there is an issue when parsing lb and lh instructions:
the issue is in line 454 of convert.py:
it works when changing this line:
BR,
David
The text was updated successfully, but these errors were encountered: