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
In cases of stupid addressing like the PPU, addresses are usually written as .db $20, $00, as opposed to the usual way, due to having to write the high byte to PPUADDR first.
In cases of stupid addressing like the PPU, addresses are usually written as
.db $20, $00
, as opposed to the usual way, due to having to write the high byte toPPUADDR
first.I wanted to do something like this:
However, this gives me a warning that macros aren't allowed to be used as expressions.
I got around it right now by removing the
.byte
:...but that will only work if it's the first entry on a 'line', and feels pretty hokey.
This is probably a lot tougher than it sounds, but I at least have a workaround for it right now, so it isn't a huuuuuge issue.
The text was updated successfully, but these errors were encountered: