Skip to content

Commit

Permalink
manual: make defines example better
Browse files Browse the repository at this point in the history
  • Loading branch information
randomdude999 committed Jan 21, 2024
1 parent 338b66e commit af57235
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions docs/manual/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -2226,10 +2226,10 @@ <h4 id="global-labels">Global labels</h4>
lda #!x ; Treated as &quot;lda #$00&quot;
lda [!x],y ; Treated as &quot;lda [$00],y&quot;

!y = $12
!x = !y$34
!y = 34
!x = $12!y

lda !x ; Treated as &quot;lda $12$34&quot; (will throw error)
lda !x ; Treated as &quot;lda $1234&quot;

!phr = &quot;pha : phx : phy&quot;

Expand Down

0 comments on commit af57235

Please sign in to comment.