]> git.sur5r.net Git - cc65/commitdiff
Fixed a bug
authorcuz <cuz@b7a2c559-68d2-44c3-8de9-860c34a00d81>
Wed, 30 Jun 2004 18:11:11 +0000 (18:11 +0000)
committercuz <cuz@b7a2c559-68d2-44c3-8de9-860c34a00d81>
Wed, 30 Jun 2004 18:11:11 +0000 (18:11 +0000)
git-svn-id: svn://svn.cc65.org/cc65/trunk@3141 b7a2c559-68d2-44c3-8de9-860c34a00d81

doc/ca65.sgml

index 13195bfc465b3e075dacca92b72360fa0b740b59..c3d64641d26db501a6cef0528d1c2c349c9437f9 100644 (file)
@@ -2848,7 +2848,7 @@ Here's a list of all control commands and a description, what they do:
   <tscreen><verb>
        .macro  Crypt   Arg
                .repeat .strlen(Arg), I
-               .byte   .strat(Arg, I) .xor $55
+               .byte   .strat(Arg, I) ^ $55
                .endrep
        .endmacro
   </verb></tscreen>
@@ -2976,7 +2976,7 @@ Here's a list of all control commands and a description, what they do:
   Switch the CPU instruction set. The command is followed by a string that
   specifies the CPU. Possible values are those that can also be supplied to
   the <tt><ref id="option--cpu" name="--cpu"></tt> command line option,
-  namely: 6502, 6502X, 65SC02, 65C02, 65816 and sunplus. Please note that 
+  namely: 6502, 6502X, 65SC02, 65C02, 65816 and sunplus. Please note that
   support for the sunplus CPU is not available in the freeware version,
   because the instruction set of the sunplus CPU is "proprietary and
   confidential".