You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Platform: MEGA65R3
Core Commit: 3C10488 (release-0.96)
ROM Release: 920395
Executing an STQ instruction on mapped colour palette ($D100-$D3FF) results in a byte order mismatch.
Normally, CPU registers are stored in AXYZ order. In this particular case, register A is omitted and register Z is written twice, resulting in byte order XYZZ.
e.g.
LDA #$11
LDX #$22
LDY #$33
LDZ #$44
STQ $D100
which results in the written byte order $22 $33 $44 $44
The text was updated successfully, but these errors were encountered:
Platform: MEGA65R3
Core Commit: 3C10488 (release-0.96)
ROM Release: 920395
Executing an STQ instruction on mapped colour palette ($D100-$D3FF) results in a byte order mismatch.
Normally, CPU registers are stored in AXYZ order. In this particular case, register A is omitted and register Z is written twice, resulting in byte order XYZZ.
e.g.
which results in the written byte order $22 $33 $44 $44
The text was updated successfully, but these errors were encountered: