On 6/29/2006 at 11:39 PM Don Y wrote:
  CALL SOMETHING
        DB <parameters_for_something>
LABEL:  <do_something_else> 
That's actually very common; in particular, stuff like:
        CALL    SHOW_MESSAGE
        DB      "Any old blather here",0
The nice part of this sort of thing is that you don't need the calling code
to load the address of the string to be displayed in a register.  Saves a
few bytes here and there.
Cheers,
Chuck