Uses

Used to mark a list of tables as being used by the current procedure. This command is only needed when a table is being used from assembly with the TBLRD instruction..

Syntax: Uses TableName

Example:

Sub sub1()    ' sub1 uses mytbl1
  Uses mytbl1
  ' assembly statements
End Sub

Sub sub2()   ' sub2 uses mytbl1 and mytbl2
  Uses mytbl1,mytbl2
  ' assembly statements
End Sub

Table mytbl1 as ubyte
End Table

Table mytbl2 as ubyte
End Table

Also See: