Specifications

3-6 Programmer’s Guide Sega
Psy-Q Development System
Location Counter constants:
The current value of the program pointer can be used as a constant. To substitute the
value of the location counter at the current position, an asterisk (*) is used:
section Bss,g_bss
Firstbss equ *
Since * gives the address of the start of the line,
org $100
dc.l *,*,*
defines $100 three times.
An @, when used on its own as a constant, substitutes the value of the location
counter, pointing to an address at which the current value will be stored.
org $100
dc.l @,@,@
defines $100,$104,$108.