z80:Directives:TIVARIABLENAME

From Learn @ Cemetech
Revision as of 17:27, 5 February 2016 by Maintenance script (talk | contribs) (Initial automated import)
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to navigationJump to search

Sets the variable name for the current calculator program.

Syntax

   /* The following would create a group file
   containing two programs, PRGMA and PRGMB. */
   
   .page 1
   .tivariablename "PRGMA"
   
       .org $9D93
       ret
   
   .page 2
   .tivariablename "PRGMB"
   
       .org $9D93
       ret
   
   /* Naturally, you need to be using a TI program
   output writing plugin for this to work. */


Allowed inputs

Uses

See Also