From: John Brandwood Date: Fri, 26 Feb 2016 16:10:11 +0000 (-0800) Subject: Add indirect JMP examples and fix typos in the documentation. X-Git-Tag: V2.16~175^2 X-Git-Url: https://git.sur5r.net/?a=commitdiff_plain;h=ef153364eab92e2124035e5555b8c5cfbfa6e5b4;p=cc65 Add indirect JMP examples and fix typos in the documentation. --- diff --git a/doc/ca65.sgml b/doc/ca65.sgml index f863e7e10..14fe8714f 100644 --- a/doc/ca65.sgml +++ b/doc/ca65.sgml @@ -2701,13 +2701,15 @@ Here's a list of all control commands and a description, what they do: bracket_as_indirect - Use [] intead of () for the indirect addressing mode. + Use [] instead of () for the indirect addressing modes. Example: lda [$82] lda [$82,x] lda [$82],y + jmp [$fffe] + jmp [table,x]