-
Notifications
You must be signed in to change notification settings - Fork 253
New issue
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
Provide a way for users to specify asm/decompiled source intermingled #1161
Comments
@DeptOfMeteors I'm also working on a 16-bit MS-DOS application and can probably provide some hints. 1/ The The Be aware, when that 2/ These are functions that Reko uses and you're probably really familiar with them in your 16 bit MS-DOS code because we jump between 32bit, 16bit and 8bit values like a pogo stick. A lot of theses
You can search reko code for the defs: SLICE:
CONVERT:
SEQ:
3/ Are you compiling reko direct from source or using the latest release? Sometimes reko misses code or merges it together resulting in missing variables. There was a recent bug fix for 16 bit MS-DOS that improved my code quality and resolved the above issue. In the end, you might need to read through the code and mark suspicious parts of your code. If you find consistent errors in reko HL then report then so we can improve it. |
Several users have requested being able to intermingle assembler language and decompiled output, like this:
Consider supporting this with both a command line switch and a Reko project setting.
The text was updated successfully, but these errors were encountered: