•  Back 
  •  Assembler 
  •  Index 
  •  Tree View 
  •  Cross references 
  •  Help 
  •  Show info about hypertext 
  •  View a new file 
Topic       : Pure Assembler Documentation
Author      : John Kormylo
Version     : PASM.HYP 1.0
Subject     : Documentation/Pure Assembler
Nodes       : 740
Index Size  : 20262
HCP-Version : 3
Compiled on : Atari
@charset    : atarist
@lang       : en
@default    : 
@help       : Help
@options    : +g -i -s +x +z -t4
@width      : 75
View Ref-File[ = ]

label = value

    Assigns a specific value to a label.

Examples:

BUSERR = $08    ;exception vector address
GEMDOS = 1      ;trap value for GEMDOS calls
false = 0       ;true/false flag
count = count+1 ;assumes a 'count = 0' earlier
address = *+0   ;equivalent to 'address:'

See also EQU, SET and REG.