Hi,
I have a function fetching its boolean arguments in the A and X registers. For some reason, the order in which I set the arguments, prior to the function call, seems to matter, because:
| Code: |
lda #0
ldx #1
jsr func
|
behaves differently than:
| Code: |
ldx #1
lda #0
jsr func
|
Admittedly my ML skills are rather limited, but I really don't see how this could make a difference. Am I missing something?