From ef153364eab92e2124035e5555b8c5cfbfa6e5b4 Mon Sep 17 00:00:00 2001 From: John Brandwood Date: Fri, 26 Feb 2016 08:10:11 -0800 Subject: [PATCH] Add indirect JMP examples and fix typos in the documentation. --- doc/ca65.sgml | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) 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]