-Ci: Switch case sensitivity on label names OFF

Group

Input

Scope

Assembly Unit

Syntax
  -Ci
  
  
Arguments

None

Default

None

Description

This option turns off case sensitivity on label names. When this option is activated, the Assembler ignores case sensitivity for label names. If the Assembler generates object files but not absolute files directly ( -FA2 assembler option), the case of exported or imported labels must still match. Or, the -Ci assembler option should be specified in the linker as well.

Example

When case sensitivity on label names is switched off, the Assembler will not generate an error message for the assembly source code in the following listing.

Listing: Example assembly source code

       ORG $200
entry: NOP

       BRA Entry

The instruction BRA Entry branches on the entry label. The default setting for case sensitivity is ON, which means that the Assembler interprets the labels Entry and entry as two distinct labels.

See also

-F (-Fh, -F2o, -FA2o, -F2, -FA2): Output file format assembler option