From 0d04730ddf4cbd6d74f8afd7f09a3f9f389af4ff Mon Sep 17 00:00:00 2001 From: uz Date: Sat, 10 Dec 2011 12:09:46 +0000 Subject: [PATCH] Documented the .SET operator that has been available for about 6 years now :-) git-svn-id: svn://svn.cc65.org/cc65/trunk@5309 b7a2c559-68d2-44c3-8de9-860c34a00d81 --- doc/ca65.sgml | 103 +++++++++++++++++++++++++++++++++----------------- 1 file changed, 68 insertions(+), 35 deletions(-) diff --git a/doc/ca65.sgml b/doc/ca65.sgml index 671938bd1..16277f210 100644 --- a/doc/ca65.sgml +++ b/doc/ca65.sgml @@ -677,7 +677,7 @@ Numeric constants are defined using the equal sign or the label assignment operator. After doing - two = 2 + two = 2 may use the symbol "two" in every place where a number is expected, and it is @@ -686,13 +686,46 @@ almost identical, but causes the symbol to be marked as a label, so it may be handled differently in a debugger: - io := $d000 + io := $d000 The right side can of course be an expression: - four = two * two + four = two * two + + + +