User’s Manual MCUez HC12 Assembler
250 Assembler Messages MOTOROLA
Assembler Messages
12.3.5 A1053: Left Parenthesis Expected
Type: Error
Description: A left parenthesis is missing in an expression containing a
reference to the page (bank) where an object is allocated.
Example:
MyData: SECTION
variable: DS.B 1
label3: EQU PAGE variable)
Tip: Insert the left parenthesis at the correct position.
Example:
MyData: SECTION
variable: DS.B 1
label3: EQU PAGE (variable)