Following is the rules for input to each panel/dialog box.
Character sets that are allowed to input are as follows:
Table 2.23 | List of Character Set |
|
|
ASCII
|
1- byte alphabets, numbers, symbols
|
Shift-JIS
|
2-byte alphabet, number, symbol, Hiragana, Katakana, Kanji and 1-byte Katakana.
|
EUC-JP
|
2-byte alphabet, number, symbol, Hiragana, Katakana, Kanji and 1-byte Katakana.
|
UTF-8
|
2-byte alphabet, number, symbol, Hiragana, Katakana, Kanji (include Chinese characters) and 1-byte Katakana.
|
UTF-16
|
2-byte alphabet, number, symbol, Hiragana, Katakana, Kanji (include Chinese characters) and 1-byte Katakana.
|
Escape sequences that are allowed to input are as follows:
Table 2.24 | Escape Sequence List |
|
|
|
\0
|
0x00
|
null character
|
\a
|
0x07
|
Alert
|
\b
|
0x08
|
Backspace
|
\t
|
0x09
|
Horizontal tab
|
\n
|
0x0A
|
New line
|
\v
|
0x0B
|
Vertical tab
|
\f
|
0x0C
|
Form feed
|
\r
|
0x0D
|
Carriage return
|
\"
|
0x22
|
Double-quotation mark
|
\'
|
0x27
|
Single-quotation mark
|
\?
|
0x3F
|
Question mark handled as a question mark if ? is entered.
|
\\
|
0x5C
|
Backslash
|
Notations allowed when entering numbers are as follows:
|
|
Binary number
|
Start with 0b and continues with the numbers from 0 to 1.
(Case insensitive for alphabets)
|
Octal number
|
Start with 0 and continues with the numbers from 0 to 7.
|
Decimal
|
Start without 0 and continues with the numbers from 0 to 9.
|
Hexadecimal number
|
Start with 0x and continues with the numbers from 0 to 9 and alphabets a to f.
(Case insensitive for alphabets)
In the input area with the
mark, prefix 0x is not needed.
|
(4) | Expression and operator |
Expression represents constants, register name, SFR name and symbols and those connected with operators.
An expression comes in two types: an address expression and a watch-expression. The expression that requires the address of a symbol is referred to as an address expression, and the one that requires the value of a symbol is referred to as a watch-expression.
(a) | An address expression and operators |
With an address expression, the address of a symbol is used to perform operations. Only when a CPU register name is written, the value of the symbol is used to perform operations.
The basic input formats of address expressions are as follows:
Table 2.26 | Basic Input Format of Address Expressions |
|
|
Name of a C language variableNote 1,2
|
Address of a C language variable
|
Expression [ExpressionNote 3]
|
Address of an array
|
Expression.Member name
|
Address of a structure/union/class member
|
Expression->Member name
|
Address of a structure/union/class member that is pointed to
|
Name of a CPU register
|
Value of the CPU register
|
Name of a SFR
|
Address of the SFR
|
Label nameNote 4, EQU symbol nameNote 4 and [immediate value]
|
Address of a label, a value of an EQU symbol, and an immediate address
|
Integer constant
|
Address
|
Note 1. | It represents C language (C89/C99) variables. |
Note 2. | If the register is assigned the value of a C variable, an error results. |
Note 3. | The expression that is input as an index to an array is parsed as a watch-expression. |
Note 4. | If the label name or EQU symbol name includes a "$", be sure to enclose the name in "{ }" (e.g. {$Label}).
When you specify the CPU register name "I", add ":REG" (e.g. I:REG) to distinguish it from the keyword "I" that indicates an imaginary number. |
From "2.18.2 Symbol name completion function", the following expressions with operator can be constructed.
Table 2.27 | Construction of Expressions with Operators |
|
|
(Expression)
|
Value of the parenthetical watch-expression
|
! Expression
|
Inverts symbol
|
- Expression
|
Logical negation
|
~ Expression
|
Bit inversion
|
Expression * ExpressionNote
|
Multiplication
|
Expression / ExpressionNote
|
Division
|
Expression % ExpressionNote
|
Remainder calculation
|
Expression + ExpressionNote
|
Addition
|
Expression . ExpressionNote
|
Subtraction
|
Expression & ExpressionNote
|
Logical multiplication by bits
|
Expression ^ ExpressionNote
|
Exclusive disjunction by bits
|
Expression | ExpressionNote
|
Logical sum by bits
|
Note | Variables and functions can be combined by an operator only with variables, functions and integer constants.
Example: C variable name + SFR name |
(b) | Watch-expression and operator |
With watch-expression, the value of a symbol is used to perform operations. Only when the value does not exist, the address of the symbol is used to perform operations (e.g. main( ) + 1).
The basic input formats of watch-expressions are as follows:
Table 2.28 | Basic Input Format of Watch-expressions |
|
|
Name of a C language variableNote 1
|
Address of a C language variable
|
Expression [Expression
|
Element of an array
|
Expression.Member name
|
Value of a structure/union/class member
|
Expression->Member name
|
Value of a structure/union/class member that is pointed to
|
*Expression
|
Value of pointer variable
|
&Expression
|
Location address
|
Name of a CPU register
|
Value of the CPU register
|
Name of a SFR
|
Value of the SFR
|
Label nameNote 2, EQU symbol nameNote 2 and [immediate value]
|
Values of a label, a value of an EQU symbol, and an immediate address
|
Integer constant
|
Integer constant value
|
Floating constant
|
Floating point constant value
|
Character constant
|
Character constant value
|
Note 1. | It represents C language (C89/C99) variables. |
Note 2. | If the label name or EQU symbol name includes a "$", be sure to enclose the name in "{ }" (e.g. {$Label}).
Any imaginary number must be multiplied by an uppercase "I" (e.g. 1.0 + 2.0*I). When you specify the CPU register name "I", add ":REG" (e.g. I:REG) to distinguish it from the keyword "I" that indicates an imaginary number. |
From "Table 2.28 Basic Input Format of Watch-expressions", the following watch-expressions with operator can be constructed. For the operators listed in the table below, the expression is parsed according to C language specifications.
Table 2.29 | Construction of Expressions with Operators |
|
|
(Expression)
|
Specifies the order in which operations are performed
|
! Expression
|
Inverts symbol
|
- Expression
|
Logical negation
|
Expression * ExpressionNote
|
Multiplication
|
Expression / ExpressionNote
|
Division
|
Expression % ExpressionNote
|
Remainder calculation
|
Expression + ExpressionNote
|
Addition
|
Expression . ExpressionNote
|
Subtraction
|
Expression & ExpressionNote
|
Logical multiplication by bits
|
Expression ^ ExpressionNote
|
Exclusive disjunction by bits
|
Expression | ExpressionNote
|
Logical sum by bits
|
Note | Variables and functions can be combined by an operator only with variables, functions and integer constants.
Example: C variable name + SFR name |