Specifications
4-6 Programmer’s Guide Sega
Psy-Q Development System
z equs "123"
...
dc.l z+4
converts to
dc.l 123+4
whereas the following expression needs backslashes to be expanded correctly:
dc.l number\z\a
converts to
dc.l number123a
SA equs 'StartAddress'
...
dc.l \SA\4
converts to
dc.l StartAddress4
Note To include single quotes in a string delimited by single quotes, either change the
delimiters to double quotes, or double-up the internal single quote. Similarly, this
syntax applies to double quotes, as follows:
Sinquote equs 'What''s the point?'
Sinquot2 equs "What's the point?"
Doubquote equs "Say ""Hello"" and go"
Doubquote equs 'Say "Hello" and go'