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
16-bit Inference Observation #107
Comments
|
so tell me, why can we do |
|
There is no 8-bit jmp, so 16-bit becomes the default. |
|
OK, and why does On Sat, Apr 30, 2016 at 11:25 AM, nicklausw notifications@github.com
Michael Bazzinotti [image: Attleboro-low rez] http://locations.schoolofrock.com/attleboro |
|
Not sure. Will try to find out next time I'm at a computer. |
|
https://github.com/vhelin/wla-dx/blob/master/opcodes_65816.c Odd...there is no I need to investigate how opcode types are carried into the linker, if at all. They might just be used by the assembler. |
|
Well wait, WLA appears to pick up on opcode size on its own. That's probably why the absolute addressing makes no error, it knows to be 16-bit. |
|
...And apparently WLA doesn't use the wrong opcode for absolute addressing, either. I'm stupid. |
Actually, that's the right opcode. |
|
Everybody, the point of the conversation is deduct why immediate addressing of a label without hinting works fine for 16-bit, but not absolute addressing (and likely the other non-immediate addressing modes as well), and to see if this ability can be transversed into the other addressing modes. |
|
As I said, opcode size tracking. WLA knows that a is 16-bit, so |
|
Sounds right. That's much clearer |
copy the
bug_exhibition/65816/template_projectdirectory and use the following code snippet as yourmain.s, then simply usemakePlease read the headline blurb below
The text was updated successfully, but these errors were encountered: