home *** CD-ROM | disk | FTP | other *** search
/ Amiga ISO Collection / AmigaUtilCD2.iso / Programming / Misc / rs60-2.dms / rs60-2.adf / Docs / ShowMacros.doc < prev    next >
Encoding:
Text File  |  1994-04-20  |  86.3 KB  |  1,796 lines

  1. Documentation for "ShowMacros" support utility.
  2. ===============================================
  3. The purpose of "ShowMacros" is to produce an assembly language source file,
  4. which when assembled, produces a binary file identical to the S:RS.macros
  5. file, or other ReSource macro file.  The source file produced may be edited
  6. before reassembly. This allows very large macros to be produced in ReSource,
  7. and any mistakes in the macro can be fixed later.  Individual macros may be
  8. transferred between macro files, deleted altogether, or even written from
  9. scratch (without help from ReSource).  The comments included in the output
  10. file should make it easy to follow what's going on.
  11.  
  12. The output of ShowMacros is compatible with the "Macro68" and "CAPE"
  13. assemblers, and the output file may be used by ReSource as a macro file
  14. immediately.  In order to use another assembler, you must strip the loader
  15. information from the file after assembling.  To do this, simply load the file
  16. into ReSource as a load file, and then immediately save as a binary image
  17. file.
  18.  
  19. NOTE: If you run ShowMacros from the Workbench by double-clicking on the icon,
  20. then either the icon (and program) must be in the same directory as the
  21. RS.Macros, or RS.Macros must be in the S: directory.
  22.  
  23. General guidelines:
  24. -------------------
  25. See the example macro file below for an explanation of the [keys].
  26.  
  27. A ReSource macro file starts with the longword $BABEF00F [A].  Following this
  28. is a longword telling ReSource to skip the next N words, which may be user
  29. data [B].  Next, is the names of the groups of macros which must be 24
  30. character strings [C1], [C2] and [C3].  They will be copied into the menus in
  31. ReSource, when the macro file is loaded.  Following is any number of macros
  32. (none is okay).  Note that macro files for ReSource previous to V5 used the
  33. $BABEF00D or $BABEF00E identifiers, and only one macros group name, and were
  34. limited to macros number 1 to 38.  ShowMacros for ReSource V5 and later works
  35. with all macros files.  ReSource V6 will load any macros files, but will only
  36. save them in the new format ($BABEF00F, and 3 macros group names).
  37.  
  38. Each macro consists of:
  39. -----------------------
  40. 1. A longword, the value of which must be between 1 and 57 inclusive,
  41. representing the macro number [D].  Number 1 will be placed first in the list
  42. in "MACROS 1" menus list, and number 57 will be placed last in the "MACROS 3"
  43. menus list.
  44.  
  45. 2. A longword, the value of which represents the number of bytes total, in
  46. this macro [E].  This number will always be even.  This field does not need
  47. to be edited, as the use of the "macroend" and "macrostart" labels will make
  48. this field correct each time you assemble.
  49.  
  50. 3. A string, up to 24 characters in length, representing the name of this
  51. macro [F].  The line immediately following this ensures that the total space
  52. occupied by this string is 24 characters total, including an optional null
  53. terminator [G].
  54.  
  55. 4. Zero or more words, representing a function number, to execute [H].  The
  56. full list can be found at the end of this file.  Some functions will expect
  57. the user to supply a string.  If a macro is executing, the function instead
  58. looks in the macro, to find the string.  If the word immediately following
  59. the function number is $7FFF, this tells the function to ask the user for a
  60. string anyway.  Otherwise, the word immediately following the function number
  61. is expected to represent the number of characters in the string following,
  62. null terminated, and then word aligned.  Again, because of the use of the
  63. "stringstart" and "stringend" labels, this field will not need to be edited,
  64. as it will be correct at assembly time, as long as these labels are not
  65. shifted.
  66.  
  67. If a function number has bit 15 set, it means that the actual function number
  68. is in the lower byte, and the *repeat* count is in the lower 7 bits of the
  69. upper byte.  Thus, $830A means three iterations of the "CURSOR/Relative/Next
  70. line" function.  This is okay for any function whose function number is less
  71. than 256.
  72.  
  73. The end of a macro is marked by a null word [I].  Some macros may be padded
  74. out with more null words, but these are not necessary, and can be removed.
  75.  
  76. Example of a Macro File:
  77. ------------------------
  78. This is an example of a configuration macro (named "Boot") that will be
  79. invoked automatically when ReSource is run.  This macro will:
  80.  
  81.      1. Cause code to be shown in lower case.
  82.      2. Display blank lines after returns.
  83.      3. Cause leading zeros not to be shown.
  84.  
  85. Also see the file "ExampleMacros.asm" for more complex example macros.
  86.  
  87.  
  88.                 ifd    __m68
  89. CAPE            set    1
  90.                 ENDC
  91.                 ifd    CAPE
  92.                 bnryonly
  93.                 endc
  94.  
  95. [A]             dc.l   $BABEF00F       ; ReSource macros identifier
  96. [B]             dc.l   0               ; number of words of user data following
  97. [C1]            dc.b   '     - Macros 1 -       ' ; User-defined name #1.
  98. [C2]            dc.b   '     - Macros 2 -       ' ; User-defined name #2.
  99. [C3]            dc.b   '     - Macros 3 -       ' ; User-defined name #3.
  100. ************************************************************************
  101. [D]             dc.l   19              ; Macro number (1 to 57)
  102. [E]             dc.l   macroend05-macrostart05
  103. macnamestart05:
  104. [F]             dc.b   'Boot                    '
  105. [G]             ifgt   24-(*-macnamestart05)
  106.                 dcb.b  24-(*-macnamestart05),0
  107.                 endc
  108. macrostart05:
  109. [H]             dc.w   $01A2           ; DISPLAY/Flip case/CODE
  110. [H]             dc.w   $02A4           ; DISPLAY/Blank lines/Returns
  111. [H]             dc.w   $029A           ; OPTIONS/Show.../Leading zeroes/OFF
  112. [I]             dc.w   0               ; reserved
  113. macroend05:
  114.                 end
  115.  
  116.  
  117. Function list (numeric order):
  118. ==============================
  119.  
  120.        dc.w    1       ;CURSOR/Relative/Next D/T change
  121.        dc.w    2       ;CURSOR/Relative/Prev D/T Change
  122.        dc.w    3       ;LABELS/Remove single/Full-line comment
  123.        dc.w    4       ;LABELS/Remove single/End-of-line comment
  124.        dc.w    5       ;LABELS/Remove single/Label
  125.        dc.w    6       ;LABELS/Edit single/Symbol
  126.        dc.w    7       ;LABELS/Edit single/Symbol - dest
  127.        dc.w    8       ;PROJECT/Quit
  128.        dc.w    9       ;CURSOR/Relative/Previous line
  129.        dc.w    10      ;CURSOR/Relative/Next line
  130.        dc.w    11      ;DISPLAY/Set data type/ASCII
  131.        dc.w    12      ;CURSOR/Relative/Previous page
  132.        dc.w    13      ;CURSOR/Relative/Next page
  133.        dc.w    14      ;DISPLAY/Set data type/Code
  134.        dc.w    15      ;LABELS/Remove single/All
  135.        dc.w    16      ;reserved
  136.        dc.w    17      ;CURSOR/Relative/Next byte
  137.        dc.w    18      ;CURSOR/Relative/Previous byte
  138.        dc.w    19      ;DISPLAY/Set data type/Longs
  139.        dc.w    20      ;DISPLAY/Set data type/Words
  140.        dc.w    21      ;CURSOR/Absolute/Start of file
  141.        dc.w    22      ;CURSOR/Absolute/End of file
  142.        dc.w    23      ;DISPLAY/Set data type/Bytes
  143.        dc.w    24      ;SAVE/Save .asm/All
  144.        dc.w    25      ;*/Convert (xx,A4) EA''s/Specify
  145.        dc.w    26      ;DISPLAY/Hiliting/CODE hunks/ON
  146.        dc.w    27      ;DISPLAY/Hiliting/DATA hunks/ON
  147.        dc.w    28      ;DISPLAY/Hiliting/BSS hunks/ON
  148.        dc.w    29      ;LABELS/Create single/Label
  149.        dc.w    30      ;LABELS/Create single/End-of-line comment
  150.        dc.w    31      ;LABELS/Create single/Full-line comment
  151.        dc.w    32      ;*/Convert (xx,A4) EA''s/Set lower limit
  152.        dc.w    33      ;*/Convert (xx,A4) EA''s/Set upper limit
  153.        dc.w    34      ;DISPLAY/Set Numeric base/ASCII
  154.        dc.w    35      ;DISPLAY/Hiliting/Reloc32/ON
  155.        dc.w    36      ;DISPLAY/Set Counter
  156.        dc.w    37      ;DISPLAY/Reset Counter
  157.        dc.w    38      ;OPTIONS 2/Interface/User Feedback/ON
  158.        dc.w    39      ;OPTIONS 2/Interface/User Feedback/OFF
  159.        dc.w    40      ;*/Convert (xx,A4) EA''s/This address
  160.        dc.w    41      ;LABELS/Create multiple/Reloc32 only
  161.        dc.w    42      ;OPTIONS 2/Interface/Feedback Delays/ON
  162.        dc.w    43      ;OPTIONS 2/Interface/Feedback Delays/OFF
  163.        dc.w    44      ;CURSOR/Remember
  164.        dc.w    45      ;DISPLAY/Set Numeric base/Binary
  165.        dc.w    46      ;MACROS 1/Create/(#1)
  166.        dc.w    47      ;MACROS 1/Execute/(#1)
  167.        dc.w    48      ;MACROS 1/Create/(#2)
  168.        dc.w    49      ;MACROS 1/Execute/(#2)
  169.        dc.w    50      ;MACROS 1/Create/(#3)
  170.        dc.w    51      ;MACROS 1/Execute/(#3)
  171.        dc.w    52      ;LABELS/Create single/Label - fwd ref
  172.        dc.w    53      ;reserved
  173.        dc.w    54      ;CURSOR/Scrolling speed/Very slow
  174.        dc.w    55      ;CURSOR/Scrolling speed/Slow
  175.        dc.w    56      ;CURSOR/Scrolling speed/Normal
  176.        dc.w    57      ;CURSOR/Scrolling speed/Fast
  177.        dc.w    58      ;CURSOR/Scrolling speed/Very fast
  178.        dc.w    59      ;LABELS/Create multiple/All
  179.        dc.w    60      ;PROJECT/Open load file
  180.        dc.w    61      ;CURSOR/Relative/Next unparsed code
  181.        dc.w    62      ;LABELS/Edit single/Label
  182.        dc.w    63      ;CURSOR/Absolute/Previous location
  183.        dc.w    64      ;CURSOR/Absolute/Forward reference
  184.        dc.w    65      ;CURSOR/Absolute/Second forward reference
  185.        dc.w    66      ;LABELS/Edit single/Full-line comment
  186.        dc.w    67      ;LABELS/Edit single/End-of-line comment
  187.        dc.w    68      ;CURSOR/Relative/Next uncertain D/T
  188.        dc.w    69      ;PROJECT/Save .RS/Save
  189.        dc.w    70      ;CURSOR/Relative/Next backward ref
  190.        dc.w    71      ;CURSOR/Absolute/Backward reference
  191.        dc.w    72      ;PROJECT/Restore file
  192.        dc.w    73      ;PROJECT/About
  193.        dc.w    74      ;reserved
  194.        dc.w    75      ;SAVE/Tabs/Real tabs
  195.        dc.w    76      ;SAVE/Tabs/Spaces
  196.        dc.w    77      ;CURSOR/Normal search/Set search string
  197.        dc.w    78      ;CURSOR/Pattern search/Find next occurrence
  198.        dc.w    79      ;*/Convert (xx,A4) EA''s/This operand
  199.        dc.w    80      ;SYMBOLS/Select field/First (default)
  200.        dc.w    81      ;SYMBOLS/Select field/Second
  201.        dc.w    82      ;MOUSEDOWN
  202.        dc.w    83      ;KEY BINDINGS/Rebind key
  203.        dc.w    84      ;KEY BINDINGS/Save key table
  204.        dc.w    85      ;KEY BINDINGS/Load key table
  205.        dc.w    86      ;*/Convert specific EA''s/Set base #1
  206.        dc.w    87      ;*/Convert specific EA''s/Set base #2
  207.        dc.w    88      ;*/Convert specific EA''s/Set base #3
  208.        dc.w    89      ;*/Convert specific EA''s/Cvert W/base 1
  209.        dc.w    90      ;*/Convert specific EA''s/Cvert W/base 2
  210.        dc.w    91      ;*/Convert specific EA''s/Cvert W/base 3
  211.        dc.w    92      ;DISPLAY/Set Numeric base/Decimal
  212.        dc.w    93      ;DISPLAY/Hiliting/Fast load hunks/ON
  213.        dc.w    94      ;DISPLAY/Hiliting/Chip load hunks/ON
  214.        dc.w    95      ;CURSOR/Clear Loc stack
  215.        dc.w    96      ;reserved
  216.        dc.w    97      ;reserved
  217.        dc.w    98      ;SYMBOLS/AvailFonts (AF)
  218.        dc.w    99      ;SYMBOLS/AnimComp
  219.        dc.w    100     ;SYMBOLS/AnimObject
  220.        dc.w    101     ;SYMBOLS/AreaInfo
  221.        dc.w    102     ;SYMBOLS/Offsets/ARP
  222.        dc.w    103     ;SYMBOLS/Bitmap
  223.        dc.w    104     ;SYMBOLS/BlitNode
  224.        dc.w    105     ;SYMBOLS/BOB
  225.        dc.w    106     ;SYMBOLS/BoolInfo
  226.        dc.w    107     ;SYMBOLS/BootBlock
  227.        dc.w    108     ;SYMBOLS/Border
  228.        dc.w    109     ;SYMBOLS/CLI structure
  229.        dc.w    110     ;SYMBOLS/ClipRectangle
  230.        dc.w    111     ;reserved
  231.        dc.w    112     ;SYMBOLS/CollTable
  232.        dc.w    113     ;SYMBOLS/ColorMap
  233.        dc.w    114     ;SYMBOLS/ConfigDev
  234.        dc.w    115     ;SYMBOLS/Devices/Console
  235.        dc.w    116     ;SYMBOLS/ConUnit
  236.        dc.w    117     ;SYMBOLS/CopInit
  237.        dc.w    118     ;SYMBOLS/CopIns
  238.        dc.w    119     ;SYMBOLS/CopList
  239.        dc.w    120     ;SYMBOLS/CprList
  240.        dc.w    121     ;reserved
  241.        dc.w    122     ;SYMBOLS/ClipBoardUnitPartial
  242.        dc.w    123     ;SYMBOLS/CurrentBinding
  243.        dc.w    124     ;SYMBOLS/DateStamp
  244.        dc.w    125     ;SYMBOLS/dBufPacket (DBP)
  245.        dc.w    126     ;reserved
  246.        dc.w    127     ;SYMBOLS/Device structure
  247.        dc.w    128     ;SYMBOLS/DeviceList
  248.        dc.w    129     ;SYMBOLS/DeviceNode
  249.        dc.w    130     ;SYMBOLS/DiskFontHeader (DFH)
  250.        dc.w    131     ;SYMBOLS/DiagArea
  251.        dc.w    132     ;SYMBOLS/DiscResource
  252.        dc.w    133     ;SYMBOLS/DiscResourceUnit
  253.        dc.w    134     ;SYMBOLS/Offsets/DiskFont
  254.        dc.w    135     ;SYMBOLS/DiskObject
  255.        dc.w    136     ;SYMBOLS/Offsets/DOS
  256.        dc.w    137     ;SYMBOLS/DosInfo
  257.        dc.w    138     ;SYMBOLS/DosPacket
  258.        dc.w    139     ;SYMBOLS/DrawerData
  259.        dc.w    140     ;SYMBOLS/Offsets/Exec
  260.        dc.w    141     ;SYMBOLS/Offsets/Expansion
  261.        dc.w    142     ;SYMBOLS/ExpansionControl
  262.        dc.w    143     ;SYMBOLS/ExpansionROM
  263.        dc.w    144     ;SYMBOLS/FontContents (FC)
  264.        dc.w    145     ;SYMBOLS/FontContentsHeader (FCH)
  265.        dc.w    146     ;SYMBOLS/FileHandle
  266.        dc.w    147     ;SYMBOLS/FileInfoBlock
  267.        dc.w    148     ;SYMBOLS/FileLock
  268.        dc.w    149     ;SYMBOLS/FileStartupMSG
  269.        dc.w    150     ;SYMBOLS/FreeList
  270.        dc.w    151     ;SYMBOLS/Gadget
  271.        dc.w    152     ;SYMBOLS/GamePortTrigger
  272.        dc.w    153     ;SYMBOLS/GELS info
  273.        dc.w    154     ;SYMBOLS/Offsets/Graphics
  274.        dc.w    155     ;SYMBOLS/Offsets/Icon
  275.        dc.w    156     ;SYMBOLS/Image
  276.        dc.w    157     ;SYMBOLS/InfoData
  277.        dc.w    158     ;SYMBOLS/InputEvent
  278.        dc.w    159     ;SYMBOLS/IntuiMessage
  279.        dc.w    160     ;SYMBOLS/IntuiText
  280.        dc.w    161     ;SYMBOLS/Offsets/Intuition
  281.        dc.w    162     ;reserved
  282.        dc.w    163     ;SYMBOLS/IOAudio structure
  283.        dc.w    164     ;SYMBOLS/IOClipReq structure
  284.        dc.w    165     ;SYMBOLS/IODrpReq structure
  285.        dc.w    166     ;SYMBOLS/IOEXTPar structure
  286.        dc.w    167     ;SYMBOLS/IOEXTSer structure
  287.        dc.w    168     ;SYMBOLS/IOEXTTD structure
  288.        dc.w    169     ;SYMBOLS/IOPrtCmdReq structure
  289.        dc.w    170     ;SYMBOLS/InterruptStructure (IS)
  290.        dc.w    171     ;SYMBOLS/InterruptVector (IV)
  291.        dc.w    172     ;SYMBOLS/Offsets/Keymap
  292.        dc.w    173     ;SYMBOLS/KeyMapNode
  293.        dc.w    174     ;SYMBOLS/KeyMap Resource
  294.        dc.w    175     ;SYMBOLS/Layer
  295.        dc.w    176     ;SYMBOLS/LayerInfo
  296.        dc.w    177     ;SYMBOLS/Offsets/Layers
  297.        dc.w    178     ;SYMBOLS/Library structure
  298.        dc.w    179     ;SYMBOLS/ListHeader (LH)
  299.        dc.w    180     ;SYMBOLS/ListNode (LN)
  300.        dc.w    181     ;SYMBOLS/Offsets/MathFFP
  301.        dc.w    182     ;SYMBOLS/Offsets/Mathieeedoubbas
  302.        dc.w    183     ;SYMBOLS/Offsets/Mathieeesingbas
  303.        dc.w    184     ;SYMBOLS/Offsets/MathTrans
  304.        dc.w    185     ;SYMBOLS/MemoryChunk (MC)
  305.        dc.w    186     ;SYMBOLS/MemoryEntry (ME)
  306.        dc.w    187     ;SYMBOLS/Menu
  307.        dc.w    188     ;SYMBOLS/MenuItem
  308.        dc.w    189     ;SYMBOLS/MessagePort (MP)
  309.        dc.w    190     ;SYMBOLS/MemoryHeader (MH)
  310.        dc.w    191     ;SYMBOLS/Misc Resource
  311.        dc.w    192     ;SYMBOLS/MemoryList (ML)
  312.        dc.w    193     ;SYMBOLS/MinimalListHeader (MLH)
  313.        dc.w    194     ;SYMBOLS/MinimalListNode (MLN)
  314.        dc.w    195     ;SYMBOLS/Message structure (MN)
  315.        dc.w    196     ;SYMBOLS/MouthReadBlock (MRB)
  316.        dc.w    197     ;SYMBOLS/Narrator Driver IORB (NDI)
  317.        dc.w    198     ;SYMBOLS/NewScreen
  318.        dc.w    199     ;SYMBOLS/NewWindow
  319.        dc.w    200     ;SYMBOLS/Resources/Potgo
  320.        dc.w    201     ;SYMBOLS/Preferences
  321.        dc.w    202     ;SYMBOLS/PrinterData
  322.        dc.w    203     ;SYMBOLS/PrinterExtendedData
  323.        dc.w    204     ;SYMBOLS/PrinterSegment
  324.        dc.w    205     ;SYMBOLS/Process structure
  325.        dc.w    206     ;SYMBOLS/PropInfo
  326.        dc.w    207     ;SYMBOLS/PTermArray
  327.        dc.w    208     ;SYMBOLS/RasInfo
  328.        dc.w    209     ;SYMBOLS/RastPort
  329.        dc.w    210     ;SYMBOLS/Rectangle
  330.        dc.w    211     ;SYMBOLS/Region
  331.        dc.w    212     ;SYMBOLS/RegionRectangle
  332.        dc.w    213     ;SYMBOLS/Remember
  333.        dc.w    214     ;SYMBOLS/Requester
  334.        dc.w    215     ;SYMBOLS/RootNode
  335.        dc.w    216     ;SYMBOLS/ResidentTag
  336.        dc.w    217     ;SYMBOLS/SatisfyMsg
  337.        dc.w    218     ;SYMBOLS/Screen
  338.        dc.w    219     ;SYMBOLS/S/Ware int list header (SH)
  339.        dc.w    220     ;SYMBOLS/SimpleSprite
  340.        dc.w    221     ;SYMBOLS/Semaphore struct (SM)
  341.        dc.w    222     ;SYMBOLS/SimpleSprite (SS)
  342.        dc.w    223     ;SYMBOLS/SignalSemaphore (SSR)
  343.        dc.w    224     ;SYMBOLS/StandardPacket
  344.        dc.w    225     ;SYMBOLS/StringInfo
  345.        dc.w    226     ;SYMBOLS/Task Control struct
  346.        dc.w    227     ;SYMBOLS/TDU_PublicUnit
  347.        dc.w    228     ;SYMBOLS/TermArray
  348.        dc.w    229     ;SYMBOLS/TextAttributes
  349.        dc.w    230     ;SYMBOLS/TextFont
  350.        dc.w    231     ;SYMBOLS/Devices/Timer
  351.        dc.w    232     ;SYMBOLS/TimeRequest
  352.        dc.w    233     ;SYMBOLS/TimeVal
  353.        dc.w    234     ;SYMBOLS/TmpRas
  354.        dc.w    235     ;SYMBOLS/Offsets/Translator
  355.        dc.w    236     ;SYMBOLS/UCopList
  356.        dc.w    237     ;SYMBOLS/Unit
  357.        dc.w    238     ;SYMBOLS/View
  358.        dc.w    239     ;SYMBOLS/ViewPort
  359.        dc.w    240     ;SYMBOLS/Virtual Sprite
  360.        dc.w    241     ;SYMBOLS/WBArg
  361.        dc.w    242     ;SYMBOLS/WBStartup
  362.        dc.w    243     ;SYMBOLS/Window
  363.        dc.w    244     ;SYMBOLS/File open parms
  364.        dc.w    245     ;SYMBOLS/Lock type
  365.        dc.w    246     ;SYMBOLS/IO errors
  366.        dc.w    247     ;SYMBOLS/Return codes
  367.        dc.w    248     ;SYMBOLS/Memory attributes
  368.        dc.w    249     ;CURSOR/Relative/Skip forward
  369.        dc.w    250     ;CURSOR/Relative/Skip Backward
  370.        dc.w    251     ;SYMBOLS/AvailFontsHeader (AFH)
  371.        dc.w    252     ;SYMBOLS/Alert codes
  372.        dc.w    253     ;SYMBOLS/AttnFlags
  373.        dc.w    254     ;SYMBOLS/AudioDevice cmds
  374.        dc.w    255     ;SYMBOLS/BreakBits
  375.        dc.w    256     ;SYMBOLS/ClipBoardDevice cmds
  376.        dc.w    257     ;SYMBOLS/ConsoleDevice cmds
  377.        dc.w    258     ;SYMBOLS/Custom hardware
  378.        dc.w    259     ;SYMBOLS/Device cmds (std)
  379.        dc.w    260     ;SYMBOLS/DeviceList types
  380.        dc.w    261     ;SYMBOLS/DiskEnvironment
  381.        dc.w    262     ;SYMBOLS/Disk states
  382.        dc.w    263     ;SYMBOLS/Drive types
  383.        dc.w    264     ;SYMBOLS/Expansion flags
  384.        dc.w    265     ;SYMBOLS/File protection bits
  385.        dc.w    266     ;SYMBOLS/FontFlags
  386.        dc.w    267     ;reserved
  387.        dc.w    268     ;SYMBOLS/Font styles
  388.        dc.w    269     ;SYMBOLS/Gadget activation
  389.        dc.w    270     ;SYMBOLS/Gadget flags
  390.        dc.w    271     ;SYMBOLS/Gadget types
  391.        dc.w    272     ;SYMBOLS/GamePortDevice cmds
  392.        dc.w    273     ;SYMBOLS/GamePort ctr types
  393.        dc.w    274     ;SYMBOLS/Hunk types
  394.        dc.w    275     ;SYMBOLS/IDCMP classes
  395.        dc.w    276     ;SYMBOLS/IEClass ANSI
  396.        dc.w    277     ;SYMBOLS/IEClass rawkey
  397.        dc.w    278     ;SYMBOLS/IEClass rawmouse
  398.        dc.w    279     ;SYMBOLS/IE qualifier
  399.        dc.w    280     ;SYMBOLS/InputDevice cmds
  400.        dc.w    281     ;SYMBOLS/InputEvent classes
  401.        dc.w    282     ;SYMBOLS/IO flags
  402.        dc.w    283     ;SYMBOLS/IOSTD structure
  403.        dc.w    284     ;SYMBOLS/KeyboardDevice cmds
  404.        dc.w    285     ;SYMBOLS/Library flags
  405.        dc.w    286     ;SYMBOLS/Menu flags
  406.        dc.w    287     ;SYMBOLS/MenuItem flags
  407.        dc.w    288     ;SYMBOLS/MenuVerify codes
  408.        dc.w    289     ;SYMBOLS/MP flags
  409.        dc.w    290     ;SYMBOLS/narrator error codes
  410.        dc.w    291     ;SYMBOLS/Node types
  411.        dc.w    292     ;SYMBOLS/Packet types
  412.        dc.w    293     ;SYMBOLS/ParallelDevice cmds
  413.        dc.w    294     ;SYMBOLS/PARDevice error codes
  414.        dc.w    295     ;SYMBOLS/Pref Baud rate codes
  415.        dc.w    296     ;SYMBOLS/Pref font size codes
  416.        dc.w    297     ;SYMBOLS/Pref lace
  417.        dc.w    298     ;SYMBOLS/Pref paper size
  418.        dc.w    299     ;SYMBOLS/Pref paper type
  419.        dc.w    300     ;SYMBOLS/Pref parity/HS
  420.        dc.w    301     ;SYMBOLS/Pref Printaspect
  421.        dc.w    302     ;SYMBOLS/Pref Printertype
  422.        dc.w    303     ;SYMBOLS/Pref PrintImage
  423.        dc.w    304     ;SYMBOLS/Pref Printpitch
  424.        dc.w    305     ;SYMBOLS/Pref PrintQuality
  425.        dc.w    306     ;SYMBOLS/Pref PrintShade
  426.        dc.w    307     ;SYMBOLS/Pref Printspacing
  427.        dc.w    308     ;SYMBOLS/Pref serialBufSize
  428.        dc.w    309     ;SYMBOLS/PrinterDevice cmds
  429.        dc.w    310     ;SYMBOLS/Printer codes
  430.        dc.w    311     ;SYMBOLS/PropInfo flags
  431.        dc.w    312     ;SYMBOLS/PutMsg actions
  432.        dc.w    313     ;SYMBOLS/RastPort draw modes
  433.        dc.w    314     ;SYMBOLS/RastPort flags
  434.        dc.w    315     ;reserved
  435.        dc.w    316     ;SYMBOLS/Requester flags
  436.        dc.w    317     ;SYMBOLS/ResidentTag flags
  437.        dc.w    318     ;SYMBOLS/Screen flags
  438.        dc.w    319     ;SYMBOLS/Seek codes
  439.        dc.w    320     ;SYMBOLS/SerialDevice cmds
  440.        dc.w    321     ;SYMBOLS/SerialDevice errors
  441.        dc.w    322     ;reserved
  442.        dc.w    323     ;SYMBOLS/Sys flags
  443.        dc.w    324     ;SYMBOLS/Task flags
  444.        dc.w    325     ;SYMBOLS/Task signals
  445.        dc.w    326     ;SYMBOLS/Task states
  446.        dc.w    327     ;SYMBOLS/TimerDevice cmds
  447.        dc.w    328     ;SYMBOLS/TrackDiskDevice cmds
  448.        dc.w    329     ;SYMBOLS/TrackDisk errors
  449.        dc.w    330     ;SYMBOLS/Translator error codes
  450.        dc.w    331     ;SYMBOLS/Unit flags
  451.        dc.w    332     ;SYMBOLS/WBenchMessage codes
  452.        dc.w    333     ;SYMBOLS/WBObject types
  453.        dc.w    334     ;SYMBOLS/WBPortMessage types
  454.        dc.w    335     ;SYMBOLS/Window flags
  455.        dc.w    336     ;reserved
  456.        dc.w    337     ;DISPLAY/Hiliting/Symbol scan/ON
  457.        dc.w    338     ;DISPLAY/Hiliting/Data type uncertain/ON
  458.        dc.w    339     ;DISPLAY/Hiliting/Data type known/ON
  459.        dc.w    340     ;DISPLAY/Hiliting/Internally-produced refs/ON
  460.        dc.w    341     ;LABELS/Remove single/Symbol
  461.        dc.w    342     ;DISPLAY/Block-fill/Fill
  462.        dc.w    343     ;MACROS 1/Create/(#4)
  463.        dc.w    344     ;MACROS 1/Execute/(#4)
  464.        dc.w    345     ;MACROS 1/Create/(#5)
  465.        dc.w    346     ;MACROS 1/Execute/(#5)
  466.        dc.w    347     ;MACROS 1/Create/(#6)
  467.        dc.w    348     ;MACROS 1/Execute/(#6)
  468.        dc.w    349     ;MACROS 1/Create/(#7)
  469.        dc.w    350     ;MACROS 1/Execute/(#7)
  470.        dc.w    351     ;MACROS 1/Create/(#8)
  471.        dc.w    352     ;MACROS 1/Execute/(#8)
  472.        dc.w    353     ;MACROS 1/Create/(#9)
  473.        dc.w    354     ;MACROS 1/Execute/(#9)
  474.        dc.w    355     ;MACROS 1/Create/(#10)
  475.        dc.w    356     ;MACROS 1/Execute/(#10)
  476.        dc.w    357     ;MACROS 1/Create/(#11)
  477.        dc.w    358     ;MACROS 1/Execute/(#11)
  478.        dc.w    359     ;MACROS 1/Create/(#12)
  479.        dc.w    360     ;MACROS 1/Execute/(#12)
  480.        dc.w    361     ;reserved
  481.        dc.w    362     ;DISPLAY/Decimal conversion/None
  482.        dc.w    363     ;DISPLAY/Decimal conversion/<10
  483.        dc.w    364     ;DISPLAY/Decimal conversion/<16
  484.        dc.w    365     ;MACROS 1/Load macros
  485.        dc.w    366     ;MACROS 1/Save all macros
  486.        dc.w    367     ;reserved
  487.        dc.w    368     ;OPTIONS 1/Show/Offsets/ON
  488.        dc.w    369     ;OPTIONS 1/Show/Offsets/OFF
  489.        dc.w    370     ;OPTIONS 2/Interface/Display Beep/ON
  490.        dc.w    371     ;OPTIONS 2/Interface/Display Beep/OFF
  491.        dc.w    372     ;reserved
  492.        dc.w    373     ;DISPLAY/Blank lines/Unconditional branches/ON
  493.        dc.w    374     ;DISPLAY/Blank lines/Conditional branches/ON
  494.        dc.w    375     ;SYMBOLS/Trap Vectors
  495.        dc.w    376     ;SYMBOLS/RawKey codes
  496.        dc.w    377     ;reserved
  497.        dc.w    378     ;reserved
  498.        dc.w    379     ;reserved
  499.        dc.w    380     ;OPTIONS 1/Show/Labels/ON
  500.        dc.w    381     ;OPTIONS 1/Show/Labels/OFF
  501.        dc.w    382     ;OPTIONS 1/Show/Symbols/ON
  502.        dc.w    383     ;OPTIONS 1/Show/Symbols/OFF
  503.        dc.w    384     ;OPTIONS 1/Show/End-of-line comments/ON
  504.        dc.w    385     ;OPTIONS 1/Show/End-of-line comments/OFF
  505.        dc.w    386     ;OPTIONS 1/Show/Full-line comments/ON
  506.        dc.w    387     ;OPTIONS 1/Show/Full-line comments/OFF
  507.        dc.w    388     ;LABELS/Replace single/Label
  508.        dc.w    389     ;SAVE/Save .asm/Partial
  509.        dc.w    390     ;CURSOR/Relative/Next label
  510.        dc.w    391     ;CURSOR/Relative/Previous label
  511.        dc.w    392     ;OPTIONS 1/Show/Hidden labels/ON
  512.        dc.w    393     ;OPTIONS 1/Show/Hidden labels/OFF
  513.        dc.w    394     ;OPTIONS 1/Show/Chip-load info/ON
  514.        dc.w    395     ;OPTIONS 1/Show/Chip-load info/OFF
  515.        dc.w    396     ;OPTIONS 1/Show/Section statements/ON
  516.        dc.w    397     ;OPTIONS 1/Show/Section statements/OFF
  517.        dc.w    398     ;OPTIONS 1/Show/End statement/ON
  518.        dc.w    399     ;OPTIONS 1/Show/End statement/OFF
  519.        dc.w    400     ;PROJECT/Open binary file
  520.        dc.w    401     ;reserved
  521.        dc.w    402     ;SAVE/Symbol table/None
  522.        dc.w    403     ;SAVE/Symbol table/XREF
  523.        dc.w    404     ;SAVE/Symbol table/EQUate
  524.        dc.w    405     ;DISPLAY/Wrap/ON
  525.        dc.w    406     ;DISPLAY/Wrap/OFF
  526.        dc.w    407     ;CURSOR/Relative/Next Section
  527.        dc.w    408     ;CURSOR/Relative/Previous Section
  528.        dc.w    409     ;reserved
  529.        dc.w    410     ;reserved
  530.        dc.w    411     ;MACROS 1/Execution speed/Fast
  531.        dc.w    412     ;MACROS 1/Execution speed/Slow
  532.        dc.w    413     ;MACROS 1/Execution speed/Wait on mouse
  533.        dc.w    414     ;CURSOR/Relative/Next symbol
  534.        dc.w    415     ;CURSOR/Relative/Previous symbol
  535.        dc.w    416     ;CURSOR/Relative/Next reloc32
  536.        dc.w    417     ;CURSOR/Relative/Previous reloc32
  537.        dc.w    418     ;DISPLAY/Flip case/CODE
  538.        dc.w    419     ;DISPLAY/Flip case/data
  539.        dc.w    420     ;MACROS 1/Execution speed/Very slow
  540.        dc.w    421     ;DISPLAY/Set Numeric base/Hexdecimal
  541.        dc.w    422     ;DISPLAY/Titlebar info/Filename
  542.        dc.w    423     ;DISPLAY/Titlebar info/Attributes
  543.        dc.w    424     ;CURSOR/Pattern search/Find previous occurrence
  544.        dc.w    425     ;CURSOR/Pattern search/Find nearest occurrence
  545.        dc.w    426     ;CURSOR/Normal search/Find next occurrence
  546.        dc.w    427     ;CURSOR/Normal search/Find previous occurrence
  547.        dc.w    428     ;CURSOR/Normal search/Find nearest occurrence
  548.        dc.w    429     ;CURSOR/Absolute/Specify offset
  549.        dc.w    430     ;CURSOR/Absolute/Specify label
  550.        dc.w    431     ;CURSOR/Absolute/Specify percentage
  551.        dc.w    432     ;OPTIONS 1/Show/DCB statements/ON
  552.        dc.w    433     ;OPTIONS 1/Show/DCB statements/OFF
  553.        dc.w    434     ;CURSOR/Copy/Clip #1
  554.        dc.w    435     ;CURSOR/Copy/Clip #2
  555.        dc.w    436     ;CURSOR/Copy/Clip #3
  556.        dc.w    437     ;CURSOR/Paste/Clip #1
  557.        dc.w    438     ;CURSOR/Paste/Clip #2
  558.        dc.w    439     ;CURSOR/Paste/Clip #3
  559.        dc.w    440     ;CURSOR/Swap/Clip #1
  560.        dc.w    441     ;CURSOR/Swap/Clip #2
  561.        dc.w    442     ;CURSOR/Swap/Clip #3
  562.        dc.w    443     ;SAVE/Calculate .asm size/All
  563.        dc.w    444     ;CURSOR/Absolute/Specify symbol
  564.        dc.w    445     ;*/Data type set/Code
  565.        dc.w    446     ;*/Data type set/ASCII
  566.        dc.w    447     ;*/Data type set/Bytes
  567.        dc.w    448     ;*/Data type set/Words
  568.        dc.w    449     ;*/Data type set/Longwords
  569.        dc.w    450     ;*/Data type set/Automatic
  570.        dc.w    451     ;*/Convert to../Absolute
  571.        dc.w    452     ;*/Convert to../Offset
  572.        dc.w    453     ;DISPLAY/Cursor address/Relative
  573.        dc.w    454     ;DISPLAY/Cursor address/Absolute
  574.        dc.w    455     ;SAVE/Save binary image/All
  575.        dc.w    456     ;reserved
  576.        dc.w    457     ;*/DOS command
  577.        dc.w    458     ;MACROS 1/Create/(#13)
  578.        dc.w    459     ;MACROS 1/Create/(#14)
  579.        dc.w    460     ;MACROS 1/Create/(#15)
  580.        dc.w    461     ;MACROS 1/Create/(#16)
  581.        dc.w    462     ;MACROS 1/Create/(#17)
  582.        dc.w    463     ;MACROS 1/Create/(#18)
  583.        dc.w    464     ;MACROS 1/Create/(#19)
  584.        dc.w    465     ;MACROS 2/Create/(#1)
  585.        dc.w    466     ;MACROS 2/Create/(#2)
  586.        dc.w    467     ;MACROS 2/Create/(#3)
  587.        dc.w    468     ;MACROS 2/Create/(#4)
  588.        dc.w    469     ;MACROS 2/Create/(#5)
  589.        dc.w    470     ;MACROS 2/Create/(#6)
  590.        dc.w    471     ;MACROS 2/Create/(#7)
  591.        dc.w    472     ;MACROS 2/Create/(#8)
  592.        dc.w    473     ;MACROS 2/Create/(#9)
  593.        dc.w    474     ;MACROS 2/Create/(#10)
  594.        dc.w    475     ;MACROS 2/Create/(#11)
  595.        dc.w    476     ;MACROS 2/Create/(#12)
  596.        dc.w    477     ;MACROS 2/Create/(#13)
  597.        dc.w    478     ;MACROS 2/Create/(#14)
  598.        dc.w    479     ;MACROS 2/Create/(#15)
  599.        dc.w    480     ;MACROS 2/Create/(#16)
  600.        dc.w    481     ;MACROS 2/Create/(#17)
  601.        dc.w    482     ;MACROS 2/Create/(#18)
  602.        dc.w    483     ;MACROS 2/Create/(#19)
  603.        dc.w    484     ;MACROS 1/Execute/(#13)
  604.        dc.w    485     ;MACROS 1/Execute/(#14)
  605.        dc.w    486     ;MACROS 1/Execute/(#15)
  606.        dc.w    487     ;MACROS 1/Execute/(#16)
  607.        dc.w    488     ;MACROS 1/Execute/(#17)
  608.        dc.w    489     ;MACROS 1/Execute/(#18)
  609.        dc.w    490     ;MACROS 1/Execute/(#19)
  610.        dc.w    491     ;MACROS 2/Execute/(#1)
  611.        dc.w    492     ;MACROS 2/Execute/(#2)
  612.        dc.w    493     ;MACROS 2/Execute/(#3)
  613.        dc.w    494     ;MACROS 2/Execute/(#4)
  614.        dc.w    495     ;MACROS 2/Execute/(#5)
  615.        dc.w    496     ;MACROS 2/Execute/(#6)
  616.        dc.w    497     ;MACROS 2/Execute/(#7)
  617.        dc.w    498     ;MACROS 2/Execute/(#8)
  618.        dc.w    499     ;MACROS 2/Execute/(#9)
  619.        dc.w    500     ;MACROS 2/Execute/(#10)
  620.        dc.w    501     ;MACROS 2/Execute/(#11)
  621.        dc.w    502     ;MACROS 2/Execute/(#12)
  622.        dc.w    503     ;MACROS 2/Execute/(#13)
  623.        dc.w    504     ;MACROS 2/Execute/(#14)
  624.        dc.w    505     ;MACROS 2/Execute/(#15)
  625.        dc.w    506     ;MACROS 2/Execute/(#16)
  626.        dc.w    507     ;MACROS 2/Execute/(#17)
  627.        dc.w    508     ;MACROS 2/Execute/(#18)
  628.        dc.w    509     ;MACROS 2/Execute/(#19)
  629.        dc.w    510     ;MACROS 1/Suspend learn/Suspend
  630.        dc.w    511     ;MACROS 1/Suspend learn/Normal
  631.        dc.w    512     ;MACROS 1/Execution speed/Very fast
  632.        dc.w    513     ;MACROS 1/Execute/(rename MACROS 1)
  633.        dc.w    514     ;reserved
  634.        dc.w    515     ;MACROS 2/Execute/(rename MACROS 2)
  635.        dc.w    516     ;reserved
  636.        dc.w    517     ;STRINGS/Edit functions/Clip start
  637.        dc.w    518     ;STRINGS/Edit functions/Clip end
  638.        dc.w    519     ;STRINGS/Edit functions/Prepend
  639.        dc.w    520     ;STRINGS/Edit functions/Append
  640.        dc.w    521     ;STRINGS/Get/Label
  641.        dc.w    522     ;STRINGS/Get/Symbol
  642.        dc.w    523     ;STRINGS/Get/Symbol - dest
  643.        dc.w    524     ;STRINGS/Get/End-of-line comment
  644.        dc.w    525     ;STRINGS/Get/Full-line comment
  645.        dc.w    526     ;STRINGS/Get/Symbol value
  646.        dc.w    527     ;STRINGS/Get/Symbol value - dest
  647.        dc.w    528     ;MACROS 1/Directives/Start conditional
  648.        dc.w    529     ;MACROS 1/Directives/End conditional
  649.        dc.w    530     ;reserved
  650.        dc.w    531     ;STRINGS/Put/Label
  651.        dc.w    532     ;CURSOR/Pattern search/Search accumulator
  652.        dc.w    533     ;CURSOR/Normal search/Search accumulator
  653.        dc.w    534     ;STRINGS/Maths functions/Increment
  654.        dc.w    535     ;STRINGS/Maths functions/Decrement
  655.        dc.w    536     ;OPTIONS 1/Allow/Reference recognition/ON
  656.        dc.w    537     ;OPTIONS 1/Allow/Reference recognition/OFF
  657.        dc.w    538     ;reserved
  658.        dc.w    539     ;reserved
  659.        dc.w    540     ;SAVE/Partial save/Set start
  660.        dc.w    541     ;SAVE/Partial save/Set end
  661.        dc.w    542     ;SAVE/Calculate .asm size/Partial
  662.        dc.w    543     ;STRINGS/Get/Keytable filename
  663.        dc.w    544     ;MACROS 1/Commentary/Full
  664.        dc.w    545     ;MACROS 1/Commentary/Heavy
  665.        dc.w    546     ;MACROS 1/Commentary/Normal
  666.        dc.w    547     ;MACROS 1/Commentary/Light
  667.        dc.w    548     ;MACROS 1/Commentary/None
  668.        dc.w    549     ;STRINGS/Define string/Acm
  669.        dc.w    550     ;*/ZAP/Zap
  670.        dc.w    551     ;reserved
  671.        dc.w    552     ;reserved
  672.        dc.w    553     ;reserved
  673.        dc.w    554     ;*/Screen/Front
  674.        dc.w    555     ;*/Screen/Back
  675.        dc.w    556     ;MACROS 1/Interactive/ON
  676.        dc.w    557     ;MACROS 1/Interactive/OFF
  677.        dc.w    558     ;STRINGS/Maths functions/Add
  678.        dc.w    559     ;STRINGS/Maths functions/Subtract
  679.        dc.w    560     ;STRINGS/Maths functions/Multiply
  680.        dc.w    561     ;STRINGS/Maths functions/Divide
  681.        dc.w    562     ;STRINGS/Get/Search string
  682.        dc.w    563     ;STRINGS/Define string/A
  683.        dc.w    564     ;STRINGS/Define string/B
  684.        dc.w    565     ;STRINGS/Define string/C
  685.        dc.w    566     ;STRINGS/Define string/D
  686.        dc.w    567     ;STRINGS/Define string/E
  687.        dc.w    568     ;STRINGS/Define string/F
  688.        dc.w    569     ;STRINGS/Define string/G
  689.        dc.w    570     ;STRINGS/Define string/H
  690.        dc.w    571     ;STRINGS/Define string/I
  691.        dc.w    572     ;STRINGS/Define string/J
  692.        dc.w    573     ;STRINGS/Define string/K
  693.        dc.w    574     ;STRINGS/Define string/L
  694.        dc.w    575     ;STRINGS/Define string/M
  695.        dc.w    576     ;STRINGS/Get/Save .asm name
  696.        dc.w    577     ;STRINGS/Get/Save .RS name
  697.        dc.w    578     ;STRINGS/Get/File
  698.        dc.w    579     ;STRINGS/Get/Cursor byte
  699.        dc.w    580     ;STRINGS/Get/Macros filename
  700.        dc.w    581     ;STRINGS/Get/Cursor offset
  701.        dc.w    582     ;DISPLAY/Titlebar info/Accumulator
  702.        dc.w    583     ;MACROS 1/Set macro label/#1
  703.        dc.w    584     ;MACROS 1/Set macro label/#2
  704.        dc.w    585     ;MACROS 1/Set macro label/#3
  705.        dc.w    586     ;MACROS 1/Set macro label/#4
  706.        dc.w    587     ;MACROS 1/Set macro label/#5
  707.        dc.w    588     ;MACROS 1/Next macro label/#1
  708.        dc.w    589     ;MACROS 1/Next macro label/#2
  709.        dc.w    590     ;MACROS 1/Next macro label/#3
  710.        dc.w    591     ;MACROS 1/Next macro label/#4
  711.        dc.w    592     ;MACROS 1/Next macro label/#5
  712.        dc.w    593     ;MACROS 1/Previous macro label/#1
  713.        dc.w    594     ;MACROS 1/Previous macro label/#2
  714.        dc.w    595     ;MACROS 1/Previous macro label/#3
  715.        dc.w    596     ;MACROS 1/Previous macro label/#4
  716.        dc.w    597     ;MACROS 1/Previous macro label/#5
  717.        dc.w    598     ;CURSOR/Pattern search/Search this line
  718.        dc.w    599     ;CURSOR/Normal search/Search this line
  719.        dc.w    600     ;STRINGS/Maths functions/Logical AND
  720.        dc.w    601     ;STRINGS/Maths functions/Logical OR
  721.        dc.w    602     ;STRINGS/Maths functions/Exclusive OR
  722.        dc.w    603     ;STRINGS/Maths functions/Logical NOT
  723.        dc.w    604     ;STRINGS/Maths functions/Negate
  724.        dc.w    605     ;STRINGS/Operand size/Byte
  725.        dc.w    606     ;STRINGS/Operand size/Word
  726.        dc.w    607     ;STRINGS/Operand size/Longword
  727.        dc.w    608     ;reserved
  728.        dc.w    609     ;reserved
  729.        dc.w    610     ;reserved
  730.        dc.w    611     ;reserved
  731.        dc.w    612     ;reserved
  732.        dc.w    613     ;reserved
  733.        dc.w    614     ;reserved
  734.        dc.w    615     ;reserved
  735.        dc.w    616     ;SYMBOLS/Object/Cursor
  736.        dc.w    617     ;reserved
  737.        dc.w    618     ;reserved
  738.        dc.w    619     ;reserved
  739.        dc.w    620     ;reserved
  740.        dc.w    621     ;reserved
  741.        dc.w    622     ;reserved
  742.        dc.w    623     ;reserved
  743.        dc.w    624     ;SYMBOLS/Object/Accumulator
  744.        dc.w    625     ;reserved
  745.        dc.w    626     ;SAVE/Save binary image/Partial
  746.        dc.w    627     ;PROJECT/Read tracks
  747.        dc.w    628     ;SAVE/Save tracks/All
  748.        dc.w    629     ;SAVE/Save tracks/Partial
  749.        dc.w    630     ;PROJECT/Dismble memory
  750.        dc.w    631     ;*/Set task priority
  751.        dc.w    632     ;STRINGS/Edit functions/Reverse
  752.        dc.w    633     ;STRINGS/Get/Filename
  753.        dc.w    634     ;STRINGS/Edit functions/Lower case
  754.        dc.w    635     ;STRINGS/Get/Accumulator length
  755.        dc.w    636     ;STRINGS/Get/Partial save size
  756.        dc.w    637     ;SAVE/Save to memory/All
  757.        dc.w    638     ;SAVE/Save to memory/Partial
  758.        dc.w    639     ;STRINGS/Swap with buffer../A
  759.        dc.w    640     ;STRINGS/Swap with buffer../B
  760.        dc.w    641     ;STRINGS/Swap with buffer../C
  761.        dc.w    642     ;STRINGS/Swap with buffer../D
  762.        dc.w    643     ;STRINGS/Swap with buffer../E
  763.        dc.w    644     ;STRINGS/Swap with buffer../F
  764.        dc.w    645     ;STRINGS/Swap with buffer../G
  765.        dc.w    646     ;STRINGS/Swap with buffer../H
  766.        dc.w    647     ;STRINGS/Swap with buffer../I
  767.        dc.w    648     ;STRINGS/Swap with buffer../J
  768.        dc.w    649     ;STRINGS/Swap with buffer../K
  769.        dc.w    650     ;STRINGS/Swap with buffer../L
  770.        dc.w    651     ;STRINGS/Swap with buffer../M
  771.        dc.w    652     ;reserved
  772.        dc.w    653     ;reserved
  773.        dc.w    654     ;SYMBOLS/Offsets/RexxSysLib
  774.        dc.w    655     ;SYMBOLS/Color entry
  775.        dc.w    656     ;SYMBOLS/Devinfo
  776.        dc.w    657     ;reserved
  777.        dc.w    658     ;SYMBOLS/PrtInfo
  778.        dc.w    659     ;reserved
  779.        dc.w    660     ;OPTIONS 1/Assembler/Metacomco
  780.        dc.w    661     ;OPTIONS 1/Assembler/Cape
  781.        dc.w    662     ;*/Origin/Set
  782.        dc.w    663     ;*/Origin/Clear
  783.        dc.w    664     ;*/Origin/Specify
  784.        dc.w    665     ;PROJECT/O''lay binary image
  785.        dc.w    666     ;OPTIONS 1/Show/Leading zeroes/OFF
  786.        dc.w    667     ;OPTIONS 1/Show/Leading zeroes/ON
  787.        dc.w    668     ;STRINGS/Accumulator/Hex
  788.        dc.w    669     ;STRINGS/Accumulator/Decimal
  789.        dc.w    670     ;STRINGS/Accumulator/Binary
  790.        dc.w    671     ;*/Reloc32/Delocate
  791.        dc.w    672     ;*/Reloc32/Relocate
  792.        dc.w    673     ;SYMBOLS/Offsets/Janus
  793.        dc.w    674     ;reserved
  794.        dc.w    675     ;DISPLAY/Blank lines/Calls/ON
  795.        dc.w    676     ;DISPLAY/Blank lines/Returns/ON
  796.        dc.w    677     ;OPTIONS 1/Show/Separate labels/ON
  797.        dc.w    678     ;OPTIONS 1/Show/Separate labels/OFF
  798.        dc.w    679     ;OPTIONS 1/Show/Label colons/ON
  799.        dc.w    680     ;OPTIONS 1/Show/Label colons/OFF
  800.        dc.w    681     ;STRINGS/Input buffer/Load
  801.        dc.w    682     ;STRINGS/Input buffer/Read line
  802.        dc.w    683     ;STRINGS/Input buffer/Restart
  803.        dc.w    684     ;STRINGS/Output buffer/Save
  804.        dc.w    685     ;STRINGS/Output buffer/Append accumulator
  805.        dc.w    686     ;STRINGS/Output buffer/Clear
  806.        dc.w    687     ;*/Convert (xx,A4) EA''s/Relative
  807.        dc.w    688     ;*/Convert (xx,A4) EA''s/Absolute
  808.        dc.w    689     ;DISPLAY/Blank lines/DBRA instructions/ON
  809.        dc.w    690     ;DISPLAY/Blank lines/DBcc instructions/ON
  810.        dc.w    691     ;OPTIONS 2/Interface/Verbose saves/ON
  811.        dc.w    692     ;SYMBOLS/CIA Resource
  812.        dc.w    693     ;OPTIONS 2/Interface/Verbose saves/OFF
  813.        dc.w    694     ;SAVE/Save screen
  814.        dc.w    695     ;SYMBOLS/String control
  815.        dc.w    696     ;OPTIONS 1/Assembler/Macro68
  816.        dc.w    697     ;DISPLAY/Hiliting/Uninitialized data/ON
  817.        dc.w    698     ;OPTIONS 1/Allow/Auto labels/ON
  818.        dc.w    699     ;OPTIONS 1/Allow/Auto labels/OFF
  819.        dc.w    700     ;DISPLAY/Block-fill/Set start
  820.        dc.w    701     ;DISPLAY/Block-fill/Set end
  821.        dc.w    702     ;SAVE/Partial save/Reset start
  822.        dc.w    703     ;SAVE/Partial save/Reset end
  823.        dc.w    704     ;reserved
  824.        dc.w    705     ;reserved
  825.        dc.w    706     ;DISPLAY 2/DCB override/Set
  826.        dc.w    707     ;DISPLAY 2/DCB override/Clear
  827.        dc.w    708     ;DISPLAY 2/Mult constants override/Set
  828.        dc.w    709     ;DISPLAY 2/Mult constants override/Clear
  829.        dc.w    710     ;STRINGS/Get/Attribute bits
  830.        dc.w    711     ;STRINGS/Put/Attributes
  831.        dc.w    712     ;OPTIONS 1/Show/Multiple constants/ON
  832.        dc.w    713     ;OPTIONS 1/Show/Multiple constants/OFF
  833.        dc.w    714     ;reserved
  834.        dc.w    715     ;DISPLAY/Hiliting/DCB override/ON
  835.        dc.w    716     ;reserved
  836.        dc.w    717     ;DISPLAY/Hiliting/Symbols/ON
  837.        dc.w    718     ;CURSOR/Relative/Next hilite
  838.        dc.w    719     ;DISPLAY/Blank lines/Entry points
  839.        dc.w    720     ;STRINGS/Maths functions/ROR
  840.        dc.w    721     ;STRINGS/Maths functions/ROL
  841.        dc.w    722     ;STRINGS/Put/Base register
  842.        dc.w    723     ;*/Specify Base Register/A0
  843.        dc.w    724     ;*/Specify Base Register/A1
  844.        dc.w    725     ;*/Specify Base Register/A2
  845.        dc.w    726     ;*/Specify Base Register/A3
  846.        dc.w    727     ;*/Specify Base Register/A4
  847.        dc.w    728     ;*/Specify Base Register/A5
  848.        dc.w    729     ;*/Specify Base Register/A6
  849.        dc.w    730     ;*/Specify Base Register/A7
  850.        dc.w    731     ;*/Convert (xx,A4) EA's/Disable
  851.        dc.w    732     ;SYMBOLS/User-defined symbols/#1
  852.        dc.w    733     ;SYMBOLS/User-defined symbols/#2
  853.        dc.w    734     ;SYMBOLS/User-defined symbols/#3
  854.        dc.w    735     ;SYMBOLS/User-defined symbols/#4
  855.        dc.w    736     ;SYMBOLS/User-defined symbols/#5
  856.        dc.w    737     ;SYMBOLS/User-defined symbols/#6
  857.        dc.w    738     ;SYMBOLS/User-defined symbols/#7
  858.        dc.w    739     ;SYMBOLS/User-defined symbols/#8
  859.        dc.w    740     ;SYMBOLS/User-defined symbols/#9
  860.        dc.w    741     ;SYMBOLS/User-defined symbols/#10
  861.        dc.w    742     ;SYMBOLS/User-defined symbols/#11
  862.        dc.w    743     ;SYMBOLS/User-defined symbols/#12
  863.        dc.w    744     ;SYMBOLS/User-defined symbols/#13
  864.        dc.w    745     ;SYMBOLS/User-defined symbols/#14
  865.        dc.w    746     ;SYMBOLS/User-defined symbols/#15
  866.        dc.w    747     ;*/Run .rcl file
  867.        dc.w    748     ;reserved
  868.        dc.w    749     ;SYMBOLS/RexxArg
  869.        dc.w    750     ;SYMBOLS/RexxMsg
  870.        dc.w    751     ;CURSOR/Absolute/Swap W/Previous
  871.        dc.w    752     ;STRINGS/Maths functions/LSL
  872.        dc.w    753     ;STRINGS/Maths functions/LSR
  873.        dc.w    754     ;STRINGS/Maths functions/Clear
  874.        dc.w    755     ;STRINGS/Maths functions/ASR
  875.        dc.w    756     ;STRINGS/Maths functions/ASL
  876.        dc.w    757     ;LABELS/Remove single/Symbol & EQUate
  877.        dc.w    758     ;CURSOR/Relative/Next error line
  878.        dc.w    759     ;SYMBOLS/Load user symbols/#1
  879.        dc.w    760     ;SYMBOLS/Load user symbols/#2
  880.        dc.w    761     ;SYMBOLS/Load user symbols/#3
  881.        dc.w    762     ;SYMBOLS/Load user symbols/#4
  882.        dc.w    763     ;SYMBOLS/Load user symbols/#5
  883.        dc.w    764     ;SYMBOLS/Load user symbols/#6
  884.        dc.w    765     ;SYMBOLS/Load user symbols/#7
  885.        dc.w    766     ;SYMBOLS/Load user symbols/#8
  886.        dc.w    767     ;SYMBOLS/Load user symbols/#9
  887.        dc.w    768     ;SYMBOLS/Load user symbols/#10
  888.        dc.w    769     ;SYMBOLS/Load user symbols/#11
  889.        dc.w    770     ;SYMBOLS/Load user symbols/#12
  890.        dc.w    771     ;SYMBOLS/Load user symbols/#13
  891.        dc.w    772     ;SYMBOLS/Load user symbols/#14
  892.        dc.w    773     ;SYMBOLS/Load user symbols/#15
  893.        dc.w    774     ;PROJECT/Disassemble
  894.        dc.w    775     ;SAVE/Save executable/With Labels
  895.        dc.w    776     ;reserved
  896.        dc.w    777     ;OPTIONS 2/Error detection/Code terminate/ON
  897.        dc.w    778     ;OPTIONS 2/Error detection/Missing label/ON
  898.        dc.w    779     ;OPTIONS 2/Error detection/Bad alignment/ON
  899.        dc.w    780     ;OPTIONS 2/Error detection/Code reference/ON
  900.        dc.w    781     ;OPTIONS 2/Error detection/Data reference/ON
  901.        dc.w    782     ;OPTIONS 2/Error detection/START+/ON
  902.        dc.w    783     ;OPTIONS 2/Error detection/AFLINE/ON
  903.        dc.w    784     ;OPTIONS 2/Error detection/Library calls/ON
  904.        dc.w    785     ;OPTIONS 2/Error detection/Illegal code/ON
  905.        dc.w    786     ;SYMBOLS/Select field/Third
  906.        dc.w    787     ;SYMBOLS/Select field/Fourth
  907.        dc.w    788     ;DISPLAY/Flip case/REGISTERS
  908.        dc.w    789     ;SYMBOLS/Offsets/BattClock
  909.        dc.w    790     ;SYMBOLS/Offsets/BattMem
  910.        dc.w    791     ;SYMBOLS/Offsets/Commodities
  911.        dc.w    792     ;SYMBOLS/Offsets/GadTools
  912.        dc.w    793     ;SYMBOLS/Keymap library
  913.        dc.w    794     ;SYMBOLS/Offsets/MathDoubTrans
  914.        dc.w    795     ;SYMBOLS/Offsets/MathSingTrans
  915.        dc.w    796     ;SYMBOLS/Devices/Ramdrive
  916.        dc.w    797     ;SYMBOLS/Offsets/Utility
  917.        dc.w    798     ;SYMBOLS/Offsets/Workbench
  918.        dc.w    799     ;SYMBOLS/View modes
  919.        dc.w    800     ;SYMBOLS/Offsets/ASL
  920.        dc.w    801     ;reserved
  921.        dc.w    802     ;PROJECT/Save Configuration
  922.        dc.w    803     ;MACROS 3/Execute/(#39)
  923.        dc.w    804     ;MACROS 3/Create/(#39)
  924.        dc.w    805     ;PROJECT/Quit NOW
  925.        dc.w    806     ;MACROS 3/Execute/(rename MACROS 3)
  926.        dc.w    807     ;MACROS 3/Create/(#19)
  927.        dc.w    808     ;MACROS 3/Execute/(#2)
  928.        dc.w    809     ;MACROS 3/Execute/(#3)
  929.        dc.w    810     ;MACROS 3/Execute/(#4)
  930.        dc.w    811     ;MACROS 3/Execute/(#5)
  931.        dc.w    812     ;MACROS 3/Execute/(#6)
  932.        dc.w    813     ;MACROS 3/Execute/(#7)
  933.        dc.w    814     ;MACROS 3/Execute/(#8)
  934.        dc.w    815     ;MACROS 3/Execute/(#9)
  935.        dc.w    816     ;MACROS 3/Execute/(#10)
  936.        dc.w    817     ;MACROS 3/Execute/(#11)
  937.        dc.w    818     ;MACROS 3/Execute/(#12)
  938.        dc.w    819     ;MACROS 3/Execute/(#13)
  939.        dc.w    820     ;MACROS 3/Execute/(#14)
  940.        dc.w    821     ;MACROS 3/Execute/(#15)
  941.        dc.w    822     ;MACROS 3/Execute/(#16)
  942.        dc.w    823     ;MACROS 3/Execute/(#17)
  943.        dc.w    824     ;MACROS 3/Execute/(#18)
  944.        dc.w    825     ;MACROS 3/Execute/(#19)
  945.        dc.w    826     ;MACROS 3/Create/(#2)
  946.        dc.w    827     ;MACROS 3/Create/(#3)
  947.        dc.w    828     ;MACROS 3/Create/(#4)
  948.        dc.w    829     ;MACROS 3/Create/(#5)
  949.        dc.w    830     ;MACROS 3/Create/(#6)
  950.        dc.w    831     ;MACROS 3/Create/(#7)
  951.        dc.w    832     ;MACROS 3/Create/(#8)
  952.        dc.w    833     ;MACROS 3/Create/(#9)
  953.        dc.w    834     ;MACROS 3/Create/(#10)
  954.        dc.w    835     ;MACROS 3/Create/(#11)
  955.        dc.w    836     ;MACROS 3/Create/(#12)
  956.        dc.w    837     ;MACROS 3/Create/(#13)
  957.        dc.w    838     ;MACROS 3/Create/(#14)
  958.        dc.w    839     ;MACROS 3/Create/(#15)
  959.        dc.w    840     ;MACROS 3/Create/(#16)
  960.        dc.w    841     ;MACROS 3/Create/(#17)
  961.        dc.w    842     ;MACROS 3/Create/(#18)
  962.        dc.w    843     ;CURSOR/Buffer search/Find next occurrence
  963.        dc.w    844     ;CURSOR/Buffer search/Find previous occurrence
  964.        dc.w    845     ;*/Convert (xx,A4) EA''s/Data refs only
  965.        dc.w    846     ;DISPLAY/Hiliting/"Shop" labels/ON
  966.        dc.w    847     ;DISPLAY/Hiliting/Custom labels/ON
  967.        dc.w    848     ;*/Convert (xx,A4) EA''s/All references
  968.        dc.w    849     ;CURSOR/Label search/Specify label
  969.        dc.w    850     ;CURSOR/Label search/Find next occurrence
  970.        dc.w    851     ;CURSOR/Label search/Find previous occurrence
  971.        dc.w    852     ;CURSOR/Symbol search/Specify symbol
  972.        dc.w    853     ;CURSOR/Symbol search/Find next occurrence
  973.        dc.w    854     ;CURSOR/Symbol search/Find previous occurrence
  974.        dc.w    855     ;PROJECT/     -<HELP>-
  975.        dc.w    856     ;LABELS/Edit single/Rotate F/L comments
  976.        dc.w    857     ;LABELS/Create single/Symbol
  977.        dc.w    858     ;MACROS 1/Execution speed/Fastest
  978.        dc.w    859     ;OPTIONS 1/Show/Data comments/ON
  979.        dc.w    860     ;OPTIONS 1/Show/Data comments/OFF
  980.        dc.w    861     ;OPTIONS 1/Show/New Syntax/OFF
  981.        dc.w    862     ;OPTIONS 1/Show/New Syntax/ON
  982.        dc.w    863     ;OPTIONS 1/Show/Strict Mnemonics/OFF
  983.        dc.w    864     ;OPTIONS 1/Show/Strict Mnemonics/ON
  984.        dc.w    865     ;reserved
  985.        dc.w    866     ;OPTIONS 1/Abs size specifiers/Word/ON
  986.        dc.w    867     ;OPTIONS 1/Abs size specifiers/Longword/ON
  987.        dc.w    868     ;OPTIONS 1/Abs size specifiers/Optimize/ON
  988.        dc.w    869     ;SAVE/Save executable/No Labels
  989.        dc.w    870     ;DISPLAY/Flip case/SIZE SPECIFIERS
  990.        dc.w    871     ;SAVE/Save .asm/Specify
  991.        dc.w    872     ;PROJECT/Save .RS/Specify
  992.        dc.w    873     ;SAVE/Save executable/Specify
  993.        dc.w    874     ;SAVE/Save binary image/Specify
  994.        dc.w    875     ;SAVE/Save .asm/Original
  995.        dc.w    876     ;PROJECT/Save .RS/Original
  996.        dc.w    877     ;SAVE/Save executable/Original
  997.        dc.w    878     ;SAVE/Save binary image/Original
  998.        dc.w    879     ;SAVE/Save .asm/Current dir
  999.        dc.w    880     ;PROJECT/Save .RS/Current dir
  1000.        dc.w    881     ;SAVE/Save executable/Current dir
  1001.        dc.w    882     ;SAVE/Save binary image/Current dir
  1002.        dc.w    883     ;SYMBOLS/Custom bases/Use (1)
  1003.        dc.w    884     ;SYMBOLS/Custom bases/Add (1)
  1004.        dc.w    885     ;SYMBOLS/Custom bases/Clear (1)
  1005.        dc.w    886     ;SYMBOLS/Custom bases/Use (2)
  1006.        dc.w    887     ;SYMBOLS/Custom bases/Add (2)
  1007.        dc.w    888     ;SYMBOLS/Custom bases/Clear (2)
  1008.        dc.w    889     ;OPTIONS 2/Error detection/EQU values/ON
  1009.        dc.w    890     ;LABELS/Remove single/EQUate
  1010.        dc.w    891     ;OPTIONS 1/Allow/EQUate value checks/ON
  1011.        dc.w    892     ;OPTIONS 1/Allow/EQUate value checks/OFF
  1012.        dc.w    893     ;CURSOR/Binary search/Set search parameters
  1013.        dc.w    894     ;CURSOR/Binary search/Word aligned only
  1014.        dc.w    895     ;CURSOR/Binary search/Any alignment
  1015.        dc.w    896     ;CURSOR/Search/Exact match
  1016.        dc.w    897     ;CURSOR/Search/Ignore case
  1017.        dc.w    898     ;CURSOR/Binary search/Find next occurrence
  1018.        dc.w    899     ;CURSOR/Binary search/Find previous occurrence
  1019.        dc.w    900     ;DISPLAY 2/Set comments column
  1020.        dc.w    901     ;STRINGS/Input buffer/Read byte
  1021.        dc.w    902     ;STRINGS/Input buffer/Read word
  1022.        dc.w    903     ;STRINGS/Input buffer/Read longword
  1023.        dc.w    904     ;STRINGS/Input buffer/Read character
  1024.        dc.w    905     ;OPTIONS 2/Pseudo opcodes/PUSH/POP/ON
  1025.        dc.w    906     ;OPTIONS 2/Pseudo opcodes/PUSH/POP/OFF
  1026.        dc.w    907     ;OPTIONS 2/Pseudo opcodes/PUSHM/POPM/ON
  1027.        dc.w    908     ;OPTIONS 2/Pseudo opcodes/PUSHM/POPM/OFF
  1028.        dc.w    909     ;OPTIONS 2/Pseudo opcodes/BLO/BHS/ON
  1029.        dc.w    910     ;OPTIONS 2/Pseudo opcodes/BLO/BHS/OFF
  1030.        dc.w    911     ;DISPLAY/Hiliting/BSS hunks/OFF
  1031.        dc.w    912     ;DISPLAY/Hiliting/DATA hunks/OFF
  1032.        dc.w    913     ;DISPLAY/Hiliting/CODE hunks/OFF
  1033.        dc.w    914     ;DISPLAY/Hiliting/Chip load hunks/OFF
  1034.        dc.w    915     ;DISPLAY/Hiliting/Fast load hunks/OFF
  1035.        dc.w    916     ;DISPLAY/Hiliting/Reloc32/OFF
  1036.        dc.w    917     ;DISPLAY/Hiliting/Symbol scan/OFF
  1037.        dc.w    918     ;DISPLAY/Hiliting/Data type uncertain/OFF
  1038.        dc.w    919     ;DISPLAY/Hiliting/Data type known/OFF
  1039.        dc.w    920     ;DISPLAY/Hiliting/Internally-produced refs/OFF
  1040.        dc.w    921     ;DISPLAY/Hiliting/Uninitialized data/OFF
  1041.        dc.w    922     ;DISPLAY/Hiliting/DCB override/OFF
  1042.        dc.w    923     ;DISPLAY/Hiliting/Symbols/OFF
  1043.        dc.w    924     ;DISPLAY/Hiliting/"Shop" labels/OFF
  1044.        dc.w    925     ;DISPLAY/Hiliting/Custom labels/OFF
  1045.        dc.w    926     ;DISPLAY/Blank lines/Unconditional branches/OFF
  1046.        dc.w    927     ;DISPLAY/Blank lines/Conditional branches/OFF
  1047.        dc.w    928     ;DISPLAY/Blank lines/DBRA instructions/OFF
  1048.        dc.w    929     ;DISPLAY/Blank lines/DBcc instructions/OFF
  1049.        dc.w    930     ;DISPLAY/Blank lines/Entry points/OFF
  1050.        dc.w    931     ;DISPLAY/Blank lines/Returns/OFF
  1051.        dc.w    932     ;DISPLAY/Blank lines/Calls/OFF
  1052.        dc.w    933     ;OPTIONS 2/Error detection/Code terminate/OFF
  1053.        dc.w    934     ;OPTIONS 2/Error detection/Missing label/OFF
  1054.        dc.w    935     ;OPTIONS 2/Error detection/Bad alignment/OFF
  1055.        dc.w    936     ;OPTIONS 2/Error detection/Code reference/OFF
  1056.        dc.w    937     ;OPTIONS 2/Error detection/Data reference/OFF
  1057.        dc.w    938     ;OPTIONS 2/Error detection/START+/OFF
  1058.        dc.w    939     ;OPTIONS 2/Error detection/AFLINE/OFF
  1059.        dc.w    940     ;OPTIONS 2/Error detection/Library calls/OFF
  1060.        dc.w    941     ;OPTIONS 2/Error detection/Illegal code/OFF
  1061.        dc.w    942     ;OPTIONS 1/Abs size specifiers/Word/OFF
  1062.        dc.w    943     ;OPTIONS 1/Abs size specifiers/Longword/OFF
  1063.        dc.w    944     ;OPTIONS 1/Abs size specifiers/Optimize/OFF
  1064.        dc.w    945     ;OPTIONS/Error detection/EQU values/OFF
  1065.        dc.w    946     ;DISPLAY/Titlebar info/Function names
  1066.        dc.w    947     ;DISPLAY/Set data type/Unknown
  1067.        dc.w    948     ;OPTIONS 1/Allow/Error comments/ON
  1068.        dc.w    949     ;OPTIONS 1/Allow/Error comments/OFF
  1069.        dc.w    950     ;MACROS 1/End macro
  1070.        dc.w    951     ;CURSOR/Search/Search from start of file
  1071.        dc.w    952     ;CURSOR/Search/Search from end of file
  1072.        dc.w    953     ;CURSOR/Search/Search from current position
  1073.        dc.w    954     ;DISPLAY/Set data type/Single
  1074.        dc.w    955     ;DISPLAY/Set data type/Double
  1075.        dc.w    956     ;DISPLAY/Set data type/Extended
  1076.        dc.w    957     ;DISPLAY/Set data type/Packed
  1077.        dc.w    958     ;SYMBOLS/DataType IDs
  1078.        dc.w    959     ;SYMBOLS/DataTypeHeader
  1079.        dc.w    960     ;SYMBOLS/Basic data types
  1080.        dc.w    961     ;SYMBOLS/Group IDs
  1081.        dc.w    962     ;SYMBOLS/DTHookContext
  1082.        dc.w    963     ;SYMBOLS/Tool
  1083.        dc.w    964     ;SYMBOLS/tn_Which types
  1084.        dc.w    965     ;SYMBOLS/tn_Flags values
  1085.        dc.w    966     ;SYMBOLS/DataType
  1086.        dc.w    967     ;SYMBOLS/ToolNode
  1087.        dc.w    968     ;SYMBOLS/Text IDs
  1088.        dc.w    969     ;SYMBOLS/Attribute tags
  1089.        dc.w    970     ;SYMBOLS/DTA_SourceType values
  1090.        dc.w    971     ;SYMBOLS/DTSpecialInfo
  1091.        dc.w    972     ;SYMBOLS/si_Flag bitdefs
  1092.        dc.w    973     ;SYMBOLS/DTMethod
  1093.        dc.w    974     ;SYMBOLS/Method tags
  1094.        dc.w    975     ;SYMBOLS/FrameInfo
  1095.        dc.w    976     ;SYMBOLS/fri_Flags bitdefs
  1096.        dc.w    977     ;SYMBOLS/dtGeneral
  1097.        dc.w    978     ;SYMBOLS/dtSelect
  1098.        dc.w    979     ;SYMBOLS/dtFrameBox
  1099.        dc.w    980     ;SYMBOLS/dtf_FrameFlags bitdefs
  1100.        dc.w    981     ;SYMBOLS/dtGoto
  1101.        dc.w    982     ;SYMBOLS/dtTrigger
  1102.        dc.w    983     ;SYMBOLS/dtt_Function values
  1103.        dc.w    984     ;SYMBOLS/dtDraw
  1104.        dc.w    985     ;SYMBOLS/dtWrite
  1105.        dc.w    986     ;SYMBOLS/dtw_Mode values
  1106.        dc.w    987     ;SYMBOLS/Attribute tags
  1107.        dc.w    988     ;SYMBOLS/Masking types
  1108.        dc.w    989     ;SYMBOLS/Compression types
  1109.        dc.w    990     ;SYMBOLS/BitMapHeader
  1110.        dc.w    991     ;SYMBOLS/ColorRegister
  1111.        dc.w    992     ;SYMBOLS/IFF types
  1112.        dc.w    993     ;SYMBOLS/Attribute tags
  1113.        dc.w    994     ;SYMBOLS/VoiceHeader
  1114.        dc.w    995     ;SYMBOLS/Compression types
  1115.        dc.w    996     ;SYMBOLS/IFF types
  1116.        dc.w    997     ;SYMBOLS/Attribute tags
  1117.        dc.w    998     ;SYMBOLS/Line
  1118.        dc.w    999     ;SYMBOLS/ln_Flags bitdefs
  1119.        dc.w    1000    ;SYMBOLS/IFF types
  1120.        dc.w    1001    ;SYMBOLS/Max channels
  1121.        dc.w    1002    ;SYMBOLS/Allocation priority
  1122.        dc.w    1003    ;SYMBOLS/AudioDevice flag values
  1123.        dc.w    1004    ;SYMBOLS/AudioDevice flag bits
  1124.        dc.w    1005    ;SYMBOLS/AudioDevice errors
  1125.        dc.w    1006    ;SYMBOLS/ClipHookMsg
  1126.        dc.w    1007    ;SYMBOLS/SGR parameters
  1127.        dc.w    1008    ;SYMBOLS/DSR parameters
  1128.        dc.w    1009    ;SYMBOLS/CTC parameters
  1129.        dc.w    1010    ;SYMBOLS/TBC parameters
  1130.        dc.w    1011    ;SYMBOLS/SM and RM parameters
  1131.        dc.w    1012    ;SYMBOLS/Unit numbers
  1132.        dc.w    1013    ;SYMBOLS/OpenDevice flags
  1133.        dc.w    1014    ;SYMBOLS/gpt_Keys bitdefs
  1134.        dc.w    1015    ;SYMBOLS/GamePort errors
  1135.        dc.w    1016    ;SYMBOLS/ID names
  1136.        dc.w    1017    ;SYMBOLS/RigidDiskBlock
  1137.        dc.w    1018    ;SYMBOLS/rdb_Flags bitdefs
  1138.        dc.w    1019    ;SYMBOLS/BadBlockEntry
  1139.        dc.w    1020    ;SYMBOLS/BadBlockBlock
  1140.        dc.w    1021    ;SYMBOLS/PartitionBlock
  1141.        dc.w    1022    ;SYMBOLS/pb_Flags bitdefs
  1142.        dc.w    1023    ;SYMBOLS/FileSysHeaderBlock
  1143.        dc.w    1024    ;SYMBOLS/LoadSegBlock
  1144.        dc.w    1025    ;SYMBOLS/ie_SubClass
  1145.        dc.w    1026    ;SYMBOLS/IEPointerPixel
  1146.        dc.w    1027    ;SYMBOLS/IEPointerTablet
  1147.        dc.w    1028    ;SYMBOLS/IENewTablet
  1148.        dc.w    1029    ;SYMBOLS/IECLASS_EVENT
  1149.        dc.w    1030    ;SYMBOLS/IECLASS_REQUESTER
  1150.        dc.w    1031    ;SYMBOLS/ie_Qualifier bits
  1151.        dc.w    1032    ;SYMBOLS/Qualifier type masks
  1152.        dc.w    1033    ;SYMBOLS/Qualifier values
  1153.        dc.w    1034    ;SYMBOLS/Qualifier bits
  1154.        dc.w    1035    ;SYMBOLS/Dead Prefix bitdefs
  1155.        dc.w    1036    ;SYMBOLS/Dead Prefix mask
  1156.        dc.w    1037    ;SYMBOLS/IO_PARFLAGS values
  1157.        dc.w    1038    ;SYMBOLS/IO_PARFLAGS bits
  1158.        dc.w    1039    ;SYMBOLS/IO_FLAGS values
  1159.        dc.w    1040    ;SYMBOLS/IO_FLAGS bits
  1160.        dc.w    1041    ;SYMBOLS/IO_STATUS values
  1161.        dc.w    1042    ;SYMBOLS/IO_STATUS bits
  1162.        dc.w    1043    ;SYMBOLS/io_Special values
  1163.        dc.w    1044    ;SYMBOLS/PrinterDevice errors
  1164.        dc.w    1045    ;SYMBOLS/IO_FLAGS values
  1165.        dc.w    1046    ;SYMBOLS/IO_FLAGS bits
  1166.        dc.w    1047    ;SYMBOLS/du_Flags values
  1167.        dc.w    1048    ;SYMBOLS/du_Flags bits
  1168.        dc.w    1049    ;SYMBOLS/Constants
  1169.        dc.w    1050    ;SYMBOLS/pd_Flags values
  1170.        dc.w    1051    ;SYMBOLS/pd_Flags bits
  1171.        dc.w    1052    ;SYMBOLS/Printer Class values
  1172.        dc.w    1053    ;SYMBOLS/Printer Class bits
  1173.        dc.w    1054    ;SYMBOLS/Composite PPC defs
  1174.        dc.w    1055    ;SYMBOLS/Color Class defs
  1175.        dc.w    1056    ;SYMBOLS/colorEntry indexes
  1176.        dc.w    1057    ;SYMBOLS/SCSICmd ptr flag
  1177.        dc.w    1058    ;SYMBOLS/SCSICmd
  1178.        dc.w    1059    ;SYMBOLS/scsi_Flags values
  1179.        dc.w    1060    ;SYMBOLS/scsi_Flags bits
  1180.        dc.w    1061    ;SYMBOLS/SCSI io_Error values
  1181.        dc.w    1062    ;SYMBOLS/Useful constants
  1182.        dc.w    1063    ;SYMBOLS/IO_SERFLAGS values
  1183.        dc.w    1064    ;SYMBOLS/IO_SERFLAGS bits
  1184.        dc.w    1065    ;SYMBOLS/IO_STATUS values
  1185.        dc.w    1066    ;SYMBOLS/IO_STATUS bits
  1186.        dc.w    1067    ;SYMBOLS/IO_EXTFLAGS values
  1187.        dc.w    1068    ;SYMBOLS/IO_EXTFLAGS bits
  1188.        dc.w    1069    ;SYMBOLS/Unit defintions
  1189.        dc.w    1070    ;SYMBOLS/EClockVal
  1190.        dc.w    1071    ;SYMBOLS/Physical drive constants
  1191.        dc.w    1072    ;SYMBOLS/Useful constants
  1192.        dc.w    1073    ;SYMBOLS/External cmds bitdefs
  1193.        dc.w    1074    ;SYMBOLS/DriveGeometry
  1194.        dc.w    1075    ;SYMBOLS/Device types
  1195.        dc.w    1076    ;SYMBOLS/dg_Flags values
  1196.        dc.w    1077    ;SYMBOLS/dg_Flags bits
  1197.        dc.w    1078    ;SYMBOLS/IO_FLAGS values
  1198.        dc.w    1079    ;SYMBOLS/IO_FLAGS bits
  1199.        dc.w    1080    ;SYMBOLS/OpenDevice flag values
  1200.        dc.w    1081    ;SYMBOLS/OpenDevice flag bits
  1201.        dc.w    1082    ;SYMBOLS/Drive types
  1202.        dc.w    1083    ;SYMBOLS/TDU_PUBFLAGS values
  1203.        dc.w    1084    ;SYMBOLS/TDU_PUBFLAGS bits
  1204.        dc.w    1085    ;SYMBOLS/Constants
  1205.        dc.w    1086    ;SYMBOLS/ID types
  1206.        dc.w    1087    ;SYMBOLS/TFontContents (TFC)
  1207.        dc.w    1088    ;SYMBOLS/taf_Type values
  1208.        dc.w    1089    ;SYMBOLS/taf_Type bits
  1209.        dc.w    1090    ;SYMBOLS/TAvailFonts (TAF)
  1210.        dc.w    1091    ;SYMBOLS/Max sizes
  1211.        dc.w    1092    ;SYMBOLS/Spec & inquiry tags
  1212.        dc.w    1093    ;SYMBOLS/Underline tags
  1213.        dc.w    1094    ;SYMBOLS/Slant tags
  1214.        dc.w    1095    ;SYMBOLS/Weight tags
  1215.        dc.w    1096    ;SYMBOLS/HorizStyle tags
  1216.        dc.w    1097    ;SYMBOLS/GlyphEngine
  1217.        dc.w    1098    ;SYMBOLS/GlyphMap
  1218.        dc.w    1099    ;SYMBOLS/GlyphWidthEntry
  1219.        dc.w    1100    ;SYMBOLS/Errors
  1220.        dc.w    1101    ;SYMBOLS/Constants
  1221.        dc.w    1102    ;SYMBOLS/DateTime
  1222.        dc.w    1103    ;SYMBOLS/dat_Flags values
  1223.        dc.w    1104    ;SYMBOLS/dat_Flags bits
  1224.        dc.w    1105    ;SYMBOLS/Date format values
  1225.        dc.w    1106    ;SYMBOLS/Constants
  1226.        dc.w    1107    ;SYMBOLS/Protection values
  1227.        dc.w    1108    ;SYMBOLS/InfoData disk types
  1228.        dc.w    1109    ;SYMBOLS/SameLock returns
  1229.        dc.w    1110    ;SYMBOLS/ChangeMode types
  1230.        dc.w    1111    ;SYMBOLS/MakeLink values
  1231.        dc.w    1112    ;SYMBOLS/ReadItem returns
  1232.        dc.w    1113    ;SYMBOLS/DosObject types
  1233.        dc.w    1114    ;SYMBOLS/AnchorPath
  1234.        dc.w    1115    ;SYMBOLS/ap_Flags values
  1235.        dc.w    1116    ;SYMBOLS/ap_Flags bits
  1236.        dc.w    1117    ;SYMBOLS/AChain
  1237.        dc.w    1118    ;SYMBOLS/an_Flags values
  1238.        dc.w    1119    ;SYMBOLS/an_Flags bits
  1239.        dc.w    1120    ;SYMBOLS/Wildcard constants
  1240.        dc.w    1121    ;SYMBOLS/an_Status bits
  1241.        dc.w    1122    ;SYMBOLS/Match returns
  1242.        dc.w    1123    ;SYMBOLS/pr_Flags values
  1243.        dc.w    1124    ;SYMBOLS/pr_Flags bits
  1244.        dc.w    1125    ;SYMBOLS/ErrorString
  1245.        dc.w    1126    ;SYMBOLS/rn_Flags values
  1246.        dc.w    1127    ;SYMBOLS/rn_Flags bits
  1247.        dc.w    1128    ;SYMBOLS/CliProcList
  1248.        dc.w    1129    ;SYMBOLS/Segment
  1249.        dc.w    1130    ;SYMBOLS/seg_UC values
  1250.        dc.w    1131    ;SYMBOLS/DosList
  1251.        dc.w    1132    ;SYMBOLS/DevProc
  1252.        dc.w    1133    ;SYMBOLS/dvp_Flags values
  1253.        dc.w    1134    ;SYMBOLS/dvp_Flags bits
  1254.        dc.w    1135    ;SYMBOLS/LockDosList flag values
  1255.        dc.w    1136    ;SYMBOLS/LockDosList flag bits
  1256.        dc.w    1137    ;SYMBOLS/ErrorReport types
  1257.        dc.w    1138    ;SYMBOLS/Shell packet types
  1258.        dc.w    1139    ;SYMBOLS/fib_DirEntryType types
  1259.        dc.w    1140    ;SYMBOLS/Hunk_ext sub-types
  1260.        dc.w    1141    ;SYMBOLS/System tags
  1261.        dc.w    1142    ;SYMBOLS/CreateNewProc tags
  1262.        dc.w    1143    ;SYMBOLS/AllocDosObject tags
  1263.        dc.w    1144    ;SYMBOLS/ExAll data types
  1264.        dc.w    1145    ;SYMBOLS/ExAllData
  1265.        dc.w    1146    ;SYMBOLS/ExAllControl
  1266.        dc.w    1147    ;SYMBOLS/DosEnvec values
  1267.        dc.w    1148    ;SYMBOLS/NotifyMessage
  1268.        dc.w    1149    ;SYMBOLS/NotifyMessage class
  1269.        dc.w    1150    ;SYMBOLS/NotifyMessage code
  1270.        dc.w    1151    ;SYMBOLS/NotifyRequest
  1271.        dc.w    1152    ;SYMBOLS/nr_Flags values
  1272.        dc.w    1153    ;SYMBOLS/nr_Flags bits
  1273.        dc.w    1154    ;SYMBOLS/Constants
  1274.        dc.w    1155    ;SYMBOLS/CSource
  1275.        dc.w    1156    ;SYMBOLS/RDArgs
  1276.        dc.w    1157    ;SYMBOLS/RDA_Flags values
  1277.        dc.w    1158    ;SYMBOLS/RDA_Flags bits
  1278.        dc.w    1159    ;SYMBOLS/LockRecords modes
  1279.        dc.w    1160    ;SYMBOLS/RecordLock
  1280.        dc.w    1161    ;SYMBOLS/Constants
  1281.        dc.w    1162    ;SYMBOLS/SetVBuf types
  1282.        dc.w    1163    ;SYMBOLS/LocalVar
  1283.        dc.w    1164    ;SYMBOLS/lv_Node.ln_Type bitdefs
  1284.        dc.w    1165    ;SYMBOLS/lv_Flags bitdefs
  1285.        dc.w    1166    ;SYMBOLS/UNIT_FLAGS values
  1286.        dc.w    1167    ;SYMBOLS/Standard IO Errors
  1287.        dc.w    1168    ;SYMBOLS/AttnFlags values
  1288.        dc.w    1169    ;SYMBOLS/CacheControl values
  1289.        dc.w    1170    ;SYMBOLS/CacheControl bits
  1290.        dc.w    1171    ;SYMBOLS/CacheDMA values
  1291.        dc.w    1172    ;SYMBOLS/CacheDMA bits
  1292.        dc.w    1173    ;SYMBOLS/SoftInt mask
  1293.        dc.w    1174    ;SYMBOLS/HardInt (NMI)
  1294.        dc.w    1175    ;SYMBOLS/IO Function offsets
  1295.        dc.w    1176    ;SYMBOLS/Special Constants
  1296.        dc.w    1177    ;SYMBOLS/LIB_FLAGS values
  1297.        dc.w    1178    ;SYMBOLS/Memory attribute bits
  1298.        dc.w    1179    ;SYMBOLS/MemBlock alignment rules
  1299.        dc.w    1180    ;SYMBOLS/MemHandlerData
  1300.        dc.w    1181    ;SYMBOLS/memh_Flags bitdefs
  1301.        dc.w    1182    ;SYMBOLS/MemoryHandler returns
  1302.        dc.w    1183    ;SYMBOLS/RT_MATCHWORD value
  1303.        dc.w    1184    ;SYMBOLS/RT_FLAGS bits
  1304.        dc.w    1185    ;SYMBOLS/SemaphoreMessage (SSM)
  1305.        dc.w    1186    ;SYMBOLS/ExtendedTask
  1306.        dc.w    1187    ;SYMBOLS/Child status values
  1307.        dc.w    1188    ;SYMBOLS/StackSwapStruct
  1308.        dc.w    1189    ;SYMBOLS/TC_FLAGS values
  1309.        dc.w    1190    ;SYMBOLS/Task signal values
  1310.        dc.w    1191    ;SYMBOLS/ColorWheelHSB
  1311.        dc.w    1192    ;SYMBOLS/ColorWheelRGB
  1312.        dc.w    1193    ;SYMBOLS/ColorWheel tags
  1313.        dc.w    1194    ;SYMBOLS/GradientSlider tags
  1314.        dc.w    1195    ;SYMBOLS/Internal cliprect flags
  1315.        dc.w    1196    ;SYMBOLS/Defines for clipping
  1316.        dc.w    1197    ;SYMBOLS/Mode coercion defs
  1317.        dc.w    1198    ;SYMBOLS/Copper instructions
  1318.        dc.w    1199    ;SYMBOLS/bplcon0 defines
  1319.        dc.w    1200    ;SYMBOLS/bplcon1 defines
  1320.        dc.w    1201    ;SYMBOLS/Display window start/stop
  1321.        dc.w    1202    ;SYMBOLS/Data fetch start/stop
  1322.        dc.w    1203    ;SYMBOLS/vposr bits
  1323.        dc.w    1204    ;SYMBOLS/DataChunk type IDs
  1324.        dc.w    1205    ;SYMBOLS/QueryHeader
  1325.        dc.w    1206    ;SYMBOLS/DisplayInfo
  1326.        dc.w    1207    ;SYMBOLS/Availability
  1327.        dc.w    1208    ;SYMBOLS/Mode properties
  1328.        dc.w    1209    ;SYMBOLS/DimensionInfo
  1329.        dc.w    1210    ;SYMBOLS/MonitorInfo
  1330.        dc.w    1211    ;SYMBOLS/Monitor compatibility
  1331.        dc.w    1212    ;SYMBOLS/Constants
  1332.        dc.w    1213    ;SYMBOLS/NameInfo
  1333.        dc.w    1214    ;SYMBOLS/VecInfo
  1334.        dc.w    1215    ;SYMBOLS/VS_VSFlags values
  1335.        dc.w    1216    ;SYMBOLS/VS_VSFlags bits
  1336.        dc.w    1217    ;SYMBOLS/bob_BobFlags values
  1337.        dc.w    1218    ;SYMBOLS/bob_BobFlags bits
  1338.        dc.w    1219    ;SYMBOLS/Animation procedures defs
  1339.        dc.w    1220    ;SYMBOLS/Misc. gfx flags
  1340.        dc.w    1221    ;SYMBOLS/Rect32
  1341.        dc.w    1222    ;SYMBOLS/tPoint
  1342.        dc.w    1223    ;SYMBOLS/bm_Flags values
  1343.        dc.w    1224    ;SYMBOLS/bm_Flags bits
  1344.        dc.w    1225    ;SYMBOLS/BitMapAttr flags
  1345.        dc.w    1226    ;SYMBOLS/dalestuff bitdefs
  1346.        dc.w    1227    ;SYMBOLS/ChipRevBits values
  1347.        dc.w    1228    ;SYMBOLS/ChipRevBits bits
  1348.        dc.w    1229    ;SYMBOLS/SetChipRev values
  1349.        dc.w    1230    ;SYMBOLS/Memory type
  1350.        dc.w    1231    ;SYMBOLS/DisplayFlags
  1351.        dc.w    1232    ;SYMBOLS/ExtendedNode XLN
  1352.        dc.w    1233    ;SYMBOLS/XLN_SUBSYSTEM values
  1353.        dc.w    1234    ;SYMBOLS/XLN_TYPE values
  1354.        dc.w    1235    ;SYMBOLS/li_Flags values
  1355.        dc.w    1236    ;SYMBOLS/Misc. Layers defs
  1356.        dc.w    1237    ;SYMBOLS/BackFill values
  1357.        dc.w    1238    ;SYMBOLS/Monitor IDs and modes
  1358.        dc.w    1239    ;SYMBOLS/BestModeID tags
  1359.        dc.w    1240    ;SYMBOLS/AnalogSignalInterval
  1360.        dc.w    1241    ;SYMBOLS/SpecialMonitor
  1361.        dc.w    1242    ;SYMBOLS/MonitorSpec
  1362.        dc.w    1243    ;SYMBOLS/ms_Flags values
  1363.        dc.w    1244    ;SYMBOLS/ms_Flags bits
  1364.        dc.w    1245    ;SYMBOLS/BEAMCON0 values
  1365.        dc.w    1246    ;SYMBOLS/rp_Flags values
  1366.        dc.w    1247    ;SYMBOLS/RP_TxFlags bitdefs
  1367.        dc.w    1248    ;SYMBOLS/GetRPAttr tags
  1368.        dc.w    1249    ;SYMBOLS/BitScaleArgs
  1369.        dc.w    1250    ;SYMBOLS/ExtSprite
  1370.        dc.w    1251    ;SYMBOLS/AllocSpriteData tags
  1371.        dc.w    1252    ;SYMBOLS/GetExtSprite tags
  1372.        dc.w    1253    ;SYMBOLS/Std Library Functions
  1373.        dc.w    1254    ;SYMBOLS/Font Styles bits
  1374.        dc.w    1255    ;SYMBOLS/Font Flags bits
  1375.        dc.w    1256    ;SYMBOLS/TTextAttr
  1376.        dc.w    1257    ;SYMBOLS/Text tags
  1377.        dc.w    1258    ;SYMBOLS/WeighTAMatch constants
  1378.        dc.w    1259    ;SYMBOLS/TextFontExtension
  1379.        dc.w    1260    ;SYMBOLS/tfe_Flags0 bitdefs
  1380.        dc.w    1261    ;SYMBOLS/ColorFontColors
  1381.        dc.w    1262    ;SYMBOLS/ColorTextFont
  1382.        dc.w    1263    ;SYMBOLS/ctf_Flags values
  1383.        dc.w    1264    ;SYMBOLS/TextExtent
  1384.        dc.w    1265    ;SYMBOLS/VideoControl tags
  1385.        dc.w    1266    ;SYMBOLS/A2024 ViewModes
  1386.        dc.w    1267    ;SYMBOLS/cm_Type values
  1387.        dc.w    1268    ;SYMBOLS/cm_Flags values
  1388.        dc.w    1269    ;SYMBOLS/cm_Flags bitdefs
  1389.        dc.w    1270    ;SYMBOLS/cm_SpriteResolution flags
  1390.        dc.w    1271    ;SYMBOLS/cm_AuxFlags bitdefs
  1391.        dc.w    1272    ;SYMBOLS/PaletteExtra
  1392.        dc.w    1273    ;SYMBOLS/ObtainBestPen values
  1393.        dc.w    1274    ;SYMBOLS/ObtainBestPen tags
  1394.        dc.w    1275    ;SYMBOLS/ObtainPen bitdefs
  1395.        dc.w    1276    ;SYMBOLS/ViewExtra
  1396.        dc.w    1277    ;SYMBOLS/ViewPortExtra
  1397.        dc.w    1278    ;SYMBOLS/vpe_Flags bitdefs
  1398.        dc.w    1279    ;SYMBOLS/_LVOMakeVPort returns
  1399.        dc.w    1280    ;SYMBOLS/_LVOMrgCop returns
  1400.        dc.w    1281    ;SYMBOLS/DBufInfo
  1401.        dc.w    1282    ;SYMBOLS/ADK bits
  1402.        dc.w    1283    ;SYMBOLS/ADK values
  1403.        dc.w    1284    ;SYMBOLS/Precomp values
  1404.        dc.w    1285    ;SYMBOLS/Blit queuer defines
  1405.        dc.w    1286    ;SYMBOLS/Blit size masks
  1406.        dc.w    1287    ;SYMBOLS/Agnus width
  1407.        dc.w    1288    ;SYMBOLS/BlitCon0 defs
  1408.        dc.w    1289    ;SYMBOLS/BLTCON0 bitdefs
  1409.        dc.w    1290    ;SYMBOLS/BLTCON1 flags
  1410.        dc.w    1291    ;SYMBOLS/Generic BLTCONx flags
  1411.        dc.w    1292    ;SYMBOLS/SHIFT alignment values
  1412.        dc.w    1293    ;SYMBOLS/BlitCon1 defs
  1413.        dc.w    1294    ;SYMBOLS/OCTANT values
  1414.        dc.w    1295    ;SYMBOLS/CIA Hardware addresses
  1415.        dc.w    1296    ;SYMBOLS/ICR bit masks
  1416.        dc.w    1297    ;SYMBOLS/ICR bit numbers
  1417.        dc.w    1298    ;SYMBOLS/CRA bit masks
  1418.        dc.w    1299    ;SYMBOLS/CRA bit numbers
  1419.        dc.w    1300    ;SYMBOLS/CRB bit masks
  1420.        dc.w    1301    ;SYMBOLS/CRB bit numbers
  1421.        dc.w    1302    ;SYMBOLS/CRB INMODE masks
  1422.        dc.w    1303    ;SYMBOLS/CIAA Port A values
  1423.        dc.w    1304    ;SYMBOLS/CIAA Port A bits
  1424.        dc.w    1305    ;SYMBOLS/CIAB Port A values
  1425.        dc.w    1306    ;SYMBOLS/CIAB Port A bits
  1426.        dc.w    1307    ;SYMBOLS/CIAB Port B values
  1427.        dc.w    1308    ;SYMBOLS/CIAB Port B bits
  1428.        dc.w    1309    ;SYMBOLS/DMACON bit masks
  1429.        dc.w    1310    ;SYMBOLS/DMACON bit numbers
  1430.        dc.w    1311    ;SYMBOLS/INTBITS bit masks
  1431.        dc.w    1312    ;SYMBOLS/INTBITS bit numbers
  1432.        dc.w    1313    ;SYMBOLS/GadgetInfo
  1433.        dc.w    1314    ;SYMBOLS/ICLASS
  1434.        dc.w    1315    ;SYMBOLS/cl_Flags bitdefs
  1435.        dc.w    1316    ;SYMBOLS/_Object
  1436.        dc.w    1317    ;SYMBOLS/Msg
  1437.        dc.w    1318    ;SYMBOLS/Method IDs
  1438.        dc.w    1319    ;SYMBOLS/opSet
  1439.        dc.w    1320    ;SYMBOLS/opUpdate
  1440.        dc.w    1321    ;SYMBOLS/opu_Flags bitdefs
  1441.        dc.w    1322    ;SYMBOLS/opGet
  1442.        dc.w    1323    ;SYMBOLS/opAddTail
  1443.        dc.w    1324    ;SYMBOLS/opMember
  1444.        dc.w    1325    ;SYMBOLS/Gadget Class tags
  1445.        dc.w    1326    ;SYMBOLS/PROPGCLASS tags
  1446.        dc.w    1327    ;SYMBOLS/STRGCLASS tags
  1447.        dc.w    1328    ;SYMBOLS/Constants
  1448.        dc.w    1329    ;SYMBOLS/Gadget Layout tags
  1449.        dc.w    1330    ;SYMBOLS/Orientation values
  1450.        dc.w    1331    ;SYMBOLS/Gadget method IDs
  1451.        dc.w    1332    ;SYMBOLS/MsgHeader
  1452.        dc.w    1333    ;SYMBOLS/gpHitTest
  1453.        dc.w    1334    ;SYMBOLS/GM_HITTEST returns
  1454.        dc.w    1335    ;SYMBOLS/gpRender
  1455.        dc.w    1336    ;SYMBOLS/gpr_Redraw values
  1456.        dc.w    1337    ;SYMBOLS/gpInput
  1457.        dc.w    1338    ;SYMBOLS/gpInput flags
  1458.        dc.w    1339    ;SYMBOLS/gpInput bitdefs
  1459.        dc.w    1340    ;SYMBOLS/gpGoInactive
  1460.        dc.w    1341    ;SYMBOLS/gpLayout
  1461.        dc.w    1342    ;SYMBOLS/Boopsi message types
  1462.        dc.w    1343    ;SYMBOLS/Interconnection tags
  1463.        dc.w    1344    ;SYMBOLS/ICA_TARGET values
  1464.        dc.w    1345    ;SYMBOLS/Constants
  1465.        dc.w    1346    ;SYMBOLS/IMAGECLASS tags
  1466.        dc.w    1347    ;SYMBOLS/SYSIA_Size values
  1467.        dc.w    1348    ;SYMBOLS/SYSIA_Which values
  1468.        dc.w    1349    ;SYMBOLS/IA_FrameType values
  1469.        dc.w    1350    ;SYMBOLS/Image message IDs
  1470.        dc.w    1351    ;SYMBOLS/IM_DRAW states
  1471.        dc.w    1352    ;SYMBOLS/impFrameBox
  1472.        dc.w    1353    ;SYMBOLS/impf_FrameFlags
  1473.        dc.w    1354    ;SYMBOLS/impDraw
  1474.        dc.w    1355    ;SYMBOLS/impErase
  1475.        dc.w    1356    ;SYMBOLS/impHitTest
  1476.        dc.w    1357    ;SYMBOLS/ExtGadget
  1477.        dc.w    1358    ;SYMBOLS/GMORE_xxx IDs
  1478.        dc.w    1359    ;SYMBOLS/BoolInfo flags
  1479.        dc.w    1360    ;SYMBOLS/PropInfo constants
  1480.        dc.w    1361    ;SYMBOLS/ExtIntuiMessage
  1481.        dc.w    1362    ;SYMBOLS/IDCMP_CHANGEWINDOW codes
  1482.        dc.w    1363    ;SYMBOLS/IBox
  1483.        dc.w    1364    ;SYMBOLS/Other Window values
  1484.        dc.w    1365    ;SYMBOLS/ExtNewWindow
  1485.        dc.w    1366    ;SYMBOLS/OpenWindowTagList tags
  1486.        dc.w    1367    ;SYMBOLS/HelpControl flags
  1487.        dc.w    1368    ;SYMBOLS/ColorSpec
  1488.        dc.w    1369    ;SYMBOLS/EasyStruct
  1489.        dc.w    1370    ;SYMBOLS/Menu masks
  1490.        dc.w    1371    ;SYMBOLS/CheckMark default widths
  1491.        dc.w    1372    ;SYMBOLS/DisplayAlert defs
  1492.        dc.w    1373    ;SYMBOLS/AutoRequest pen defines
  1493.        dc.w    1374    ;SYMBOLS/RAWMOUSE codes
  1494.        dc.w    1375    ;SYMBOLS/RAWKEY codes
  1495.        dc.w    1376    ;SYMBOLS/RAWKEY qualifiers
  1496.        dc.w    1377    ;SYMBOLS/Tablet tags
  1497.        dc.w    1378    ;SYMBOLS/TabletData
  1498.        dc.w    1379    ;SYMBOLS/TabletHookData
  1499.        dc.w    1380    ;SYMBOLS/NewObject tags
  1500.        dc.w    1381    ;SYMBOLS/POINTERA_XResolution defs
  1501.        dc.w    1382    ;SYMBOLS/POINTERA_YResolution defs
  1502.        dc.w    1383    ;SYMBOLS/Constants
  1503.        dc.w    1384    ;SYMBOLS/Enable CLI
  1504.        dc.w    1385    ;SYMBOLS/Printer port
  1505.        dc.w    1386    ;SYMBOLS/Serial bit masks
  1506.        dc.w    1387    ;SYMBOLS/Handshake
  1507.        dc.w    1388    ;SYMBOLS/RGB PrintFlags
  1508.        dc.w    1389    ;SYMBOLS/Center PrintFlags
  1509.        dc.w    1390    ;SYMBOLS/Dimensions PrintFlags
  1510.        dc.w    1391    ;SYMBOLS/Scaling PrintFlags
  1511.        dc.w    1392    ;SYMBOLS/Dithering PrintFlags
  1512.        dc.w    1393    ;SYMBOLS/Anti-aliasing PrintFlags
  1513.        dc.w    1394    ;SYMBOLS/DrawInfo
  1514.        dc.w    1395    ;SYMBOLS/dri_Version values
  1515.        dc.w    1396    ;SYMBOLS/dri_Flags bitdefs
  1516.        dc.w    1397    ;SYMBOLS/dri_Pens indexes
  1517.        dc.w    1398    ;SYMBOLS/dri_Pens complement
  1518.        dc.w    1399    ;SYMBOLS/Height & width constants
  1519.        dc.w    1400    ;SYMBOLS/Screen tags
  1520.        dc.w    1401    ;SYMBOLS/OpenScreen error codes
  1521.        dc.w    1402    ;SYMBOLS/ExtNewScreen
  1522.        dc.w    1403    ;SYMBOLS/Overscan types
  1523.        dc.w    1404    ;SYMBOLS/PubScreenNode
  1524.        dc.w    1405    ;SYMBOLS/psn_Flags values
  1525.        dc.w    1406    ;SYMBOLS/PubScreen name len
  1526.        dc.w    1407    ;SYMBOLS/PubScreen modes
  1527.        dc.w    1408    ;SYMBOLS/ScreenDepth values
  1528.        dc.w    1409    ;SYMBOLS/ScreenPosition values
  1529.        dc.w    1410    ;SYMBOLS/ScreenBuffer
  1530.        dc.w    1411    ;SYMBOLS/AllocScreenBuffer flags
  1531.        dc.w    1412    ;SYMBOLS/StringExtend
  1532.        dc.w    1413    ;SYMBOLS/SGWork
  1533.        dc.w    1414    ;SYMBOLS/sgw_EditOp flags
  1534.        dc.w    1415    ;SYMBOLS/sgw_Modes bitdefs
  1535.        dc.w    1416    ;SYMBOLS/sgw_Actions bitdefs
  1536.        dc.w    1417    ;SYMBOLS/Function IDs
  1537.        dc.w    1418    ;SYMBOLS/Tool IDs
  1538.        dc.w    1419    ;SYMBOLS/GetAmigaGuideAttr tags
  1539.        dc.w    1420    ;SYMBOLS/AmigaGuideMsg
  1540.        dc.w    1421    ;SYMBOLS/NewAmigaGuide
  1541.        dc.w    1422    ;SYMBOLS/nag_Flags bitdefs
  1542.        dc.w    1423    ;SYMBOLS/Callback function IDs
  1543.        dc.w    1424    ;SYMBOLS/Error message IDs
  1544.        dc.w    1425    ;SYMBOLS/XRef
  1545.        dc.w    1426    ;SYMBOLS/XRef node types
  1546.        dc.w    1427    ;SYMBOLS/AmigaGuideHost
  1547.        dc.w    1428    ;SYMBOLS/Methods
  1548.        dc.w    1429    ;SYMBOLS/opFindHost
  1549.        dc.w    1430    ;SYMBOLS/opNodeIO
  1550.        dc.w    1431    ;SYMBOLS/onm_Flags bitdefs
  1551.        dc.w    1432    ;SYMBOLS/onm_Attrs tags
  1552.        dc.w    1433    ;SYMBOLS/opExpungeNode
  1553.        dc.w    1434    ;SYMBOLS/Requester types
  1554.        dc.w    1435    ;SYMBOLS/FileRequester
  1555.        dc.w    1436    ;SYMBOLS/File requester tags
  1556.        dc.w    1437    ;SYMBOLS/Bitdefs for ASLFR_Flags1
  1557.        dc.w    1438    ;SYMBOLS/Bitdefs for ASLFR_Flags2
  1558.        dc.w    1439    ;SYMBOLS/FontRequester
  1559.        dc.w    1440    ;SYMBOLS/Font requester tags
  1560.        dc.w    1441    ;SYMBOLS/Bitdefs for ASLFO_Flags
  1561.        dc.w    1442    ;SYMBOLS/ScreenModeRequester
  1562.        dc.w    1443    ;SYMBOLS/DisplayMode
  1563.        dc.w    1444    ;SYMBOLS/ScreenMode requester tags
  1564.        dc.w    1445    ;SYMBOLS/NewBroker
  1565.        dc.w    1446    ;SYMBOLS/nb_Version values
  1566.        dc.w    1447    ;SYMBOLS/Sizes for buffers
  1567.        dc.w    1448    ;SYMBOLS/nb_Unique flags
  1568.        dc.w    1449    ;SYMBOLS/nb_Flags values
  1569.        dc.w    1450    ;SYMBOLS/Commodities object types
  1570.        dc.w    1451    ;SYMBOLS/Commodities message types
  1571.        dc.w    1452    ;SYMBOLS/CXM_COMMAND IDs
  1572.        dc.w    1453    ;SYMBOLS/InputXpression
  1573.        dc.w    1454    ;SYMBOLS/ix_Version values
  1574.        dc.w    1455    ;SYMBOLS/ix_QualSame values
  1575.        dc.w    1456    ;SYMBOLS/ix_QualMask values
  1576.        dc.w    1457    ;SYMBOLS/CxBroker error returns
  1577.        dc.w    1458    ;SYMBOLS/CxObjError return vals
  1578.        dc.w    1459    ;SYMBOLS/Manifest constants
  1579.        dc.w    1460    ;SYMBOLS/er_Type board defs
  1580.        dc.w    1461    ;SYMBOLS/er_Type memory size defs
  1581.        dc.w    1462    ;SYMBOLS/Other er_Type defs
  1582.        dc.w    1463    ;SYMBOLS/er_Flags bitdefs
  1583.        dc.w    1464    ;SYMBOLS/Other er_Flags defs
  1584.        dc.w    1465    ;SYMBOLS/ec_Interrupt bitdefs
  1585.        dc.w    1466    ;SYMBOLS/da_Config flags
  1586.        dc.w    1467    ;SYMBOLS/cd_Flags bitdefs
  1587.        dc.w    1468    ;SYMBOLS/BootNode
  1588.        dc.w    1469    ;SYMBOLS/Error codes
  1589.        dc.w    1470    ;SYMBOLS/eb_Flags bitdefs
  1590.        dc.w    1471    ;SYMBOLS/Gadget kinds
  1591.        dc.w    1472    ;SYMBOLS/GadTools IDCMPFlags
  1592.        dc.w    1473    ;SYMBOLS/NewGadget
  1593.        dc.w    1474    ;SYMBOLS/ng_Flags values
  1594.        dc.w    1475    ;SYMBOLS/NewMenu
  1595.        dc.w    1476    ;SYMBOLS/gnm_Type values
  1596.        dc.w    1477    ;SYMBOLS/nm_Flags values
  1597.        dc.w    1478    ;SYMBOLS/NewMenu return codes
  1598.        dc.w    1479    ;SYMBOLS/MX gadget default dims
  1599.        dc.w    1480    ;SYMBOLS/Checkbox default dims
  1600.        dc.w    1481    ;SYMBOLS/GadTools tags
  1601.        dc.w    1482    ;SYMBOLS/Justification tags
  1602.        dc.w    1483    ;SYMBOLS/FrameType tags
  1603.        dc.w    1484    ;SYMBOLS/Inter-element spacing
  1604.        dc.w    1485    ;SYMBOLS/GTLV_CallBack tag values
  1605.        dc.w    1486    ;SYMBOLS/CallBack hook returns
  1606.        dc.w    1487    ;SYMBOLS/LVDrawMsg
  1607.        dc.w    1488    ;SYMBOLS/lvdm_State states
  1608.        dc.w    1489    ;SYMBOLS/IFFHandle
  1609.        dc.w    1490    ;SYMBOLS/iff_Flags bit masks
  1610.        dc.w    1491    ;SYMBOLS/IFFStreamCmd
  1611.        dc.w    1492    ;SYMBOLS/ContextNode
  1612.        dc.w    1493    ;SYMBOLS/LocalContextItem
  1613.        dc.w    1494    ;SYMBOLS/StoredProperty
  1614.        dc.w    1495    ;SYMBOLS/CollectionItem
  1615.        dc.w    1496    ;SYMBOLS/ClipboardHandle
  1616.        dc.w    1497    ;SYMBOLS/IFF return codes
  1617.        dc.w    1498    ;SYMBOLS/Universal IFF IDs
  1618.        dc.w    1499    ;SYMBOLS/Local context ID codes
  1619.        dc.w    1500    ;SYMBOLS/ParseIFF control modes
  1620.        dc.w    1501    ;SYMBOLS/StoreLocalItem modes
  1621.        dc.w    1502    ;SYMBOLS/Unknown size value
  1622.        dc.w    1503    ;SYMBOLS/Call-back command values
  1623.        dc.w    1504    ;SYMBOLS/GetLocaleStr constants
  1624.        dc.w    1505    ;SYMBOLS/Locale
  1625.        dc.w    1506    ;SYMBOLS/loc_MeasuringSystem vals
  1626.        dc.w    1507    ;SYMBOLS/loc_CalendarType vals
  1627.        dc.w    1508    ;SYMBOLS/loc_MonxxxSpaceSep vals
  1628.        dc.w    1509    ;SYMBOLS/loc_MonxxxSignPos vals
  1629.        dc.w    1510    ;SYMBOLS/loc_MonxxxCSPos vals
  1630.        dc.w    1511    ;SYMBOLS/OpenCatalog tags
  1631.        dc.w    1512    ;SYMBOLS/StrnCmp types
  1632.        dc.w    1513    ;SYMBOLS/Catalog
  1633.        dc.w    1514    ;SYMBOLS/MathIEEEResource
  1634.        dc.w    1515    ;SYMBOLS/MathIEEEResource_Flags
  1635.        dc.w    1516    ;SYMBOLS/Constants
  1636.        dc.w    1517    ;SYMBOLS/FontPrefs
  1637.        dc.w    1518    ;SYMBOLS/fp_Type values
  1638.        dc.w    1519    ;SYMBOLS/IControlPrefs
  1639.        dc.w    1520    ;SYMBOLS/ic_Flags bitdefs
  1640.        dc.w    1521    ;SYMBOLS/InputPrefs
  1641.        dc.w    1522    ;SYMBOLS/CountryPrefs
  1642.        dc.w    1523    ;SYMBOLS/LocalePrefs
  1643.        dc.w    1524    ;SYMBOLS/OverscanPrefs
  1644.        dc.w    1525    ;SYMBOLS/PalettePrefs
  1645.        dc.w    1526    ;SYMBOLS/PointerPrefs
  1646.        dc.w    1527    ;SYMBOLS/pp_Which constants
  1647.        dc.w    1528    ;SYMBOLS/RGBTable
  1648.        dc.w    1529    ;SYMBOLS/PrefHeader
  1649.        dc.w    1530    ;SYMBOLS/PrinterGfxPrefs
  1650.        dc.w    1531    ;SYMBOLS/pg_Aspect constants
  1651.        dc.w    1532    ;SYMBOLS/pg_Shade constants
  1652.        dc.w    1533    ;SYMBOLS/pg_Image constants
  1653.        dc.w    1534    ;SYMBOLS/pg_ColorCorrect bitdefs
  1654.        dc.w    1535    ;SYMBOLS/pg_Dimensions constants
  1655.        dc.w    1536    ;SYMBOLS/pg_Dithering constants
  1656.        dc.w    1537    ;SYMBOLS/pg_GraphicsFlags bitdefs
  1657.        dc.w    1538    ;SYMBOLS/PrinterPSPrefs
  1658.        dc.w    1539    ;SYMBOLS/ps_DriverMode constants
  1659.        dc.w    1540    ;SYMBOLS/ps_PaperFormat constants
  1660.        dc.w    1541    ;SYMBOLS/ps_Font constants
  1661.        dc.w    1542    ;SYMBOLS/ps_Pitch constants
  1662.        dc.w    1543    ;SYMBOLS/ps_Orientation constants
  1663.        dc.w    1544    ;SYMBOLS/ps_Tab constants
  1664.        dc.w    1545    ;SYMBOLS/ps_Image constants
  1665.        dc.w    1546    ;SYMBOLS/ps_Shading constants
  1666.        dc.w    1547    ;SYMBOLS/ps_Dithering constants
  1667.        dc.w    1548    ;SYMBOLS/ps_Transparency constants
  1668.        dc.w    1549    ;SYMBOLS/ps_Aspect constants
  1669.        dc.w    1550    ;SYMBOLS/ps_ScalingType constants
  1670.        dc.w    1551    ;SYMBOLS/ps_ScalingMath constants
  1671.        dc.w    1552    ;SYMBOLS/ps_Centering constants
  1672.        dc.w    1553    ;SYMBOLS/Constants
  1673.        dc.w    1554    ;SYMBOLS/PrinterTxtPrefs
  1674.        dc.w    1555    ;SYMBOLS/pt_Port constants
  1675.        dc.w    1556    ;SYMBOLS/pt_PaperType constants
  1676.        dc.w    1557    ;SYMBOLS/pt_PaperSize constants
  1677.        dc.w    1558    ;SYMBOLS/pt_PrintPitch constants
  1678.        dc.w    1559    ;SYMBOLS/pt_PrintSpacing constants
  1679.        dc.w    1560    ;SYMBOLS/pt_PrintQuality constants
  1680.        dc.w    1561    ;SYMBOLS/PrinterUnitPrefs
  1681.        dc.w    1562    ;SYMBOLS/ScreenModePrefs
  1682.        dc.w    1563    ;SYMBOLS/smp_Control bitdefs
  1683.        dc.w    1564    ;SYMBOLS/SerialPrefs
  1684.        dc.w    1565    ;SYMBOLS/sp_Parity constants
  1685.        dc.w    1566    ;SYMBOLS/sp_Input/OutputHandshake
  1686.        dc.w    1567    ;SYMBOLS/SoundPrefs
  1687.        dc.w    1568    ;SYMBOLS/sop_AudioType constants
  1688.        dc.w    1569    ;SYMBOLS/WBPatternPrefs
  1689.        dc.w    1570    ;SYMBOLS/wbp_Which constants
  1690.        dc.w    1571    ;SYMBOLS/wbp_Flags bitdefs
  1691.        dc.w    1572    ;SYMBOLS/Depth constants
  1692.        dc.w    1573    ;SYMBOLS/Pattern width & height
  1693.        dc.w    1574    ;SYMBOLS/Amiga specific bits
  1694.        dc.w    1575    ;SYMBOLS/Shared bits
  1695.        dc.w    1576    ;SYMBOLS/CardHandle
  1696.        dc.w    1577    ;SYMBOLS/DeviceTData
  1697.        dc.w    1578    ;SYMBOLS/CardMemoryMap
  1698.        dc.w    1579    ;SYMBOLS/cah_CardFlags bitdefs
  1699.        dc.w    1580    ;SYMBOLS/ReleaseCard bitdefs
  1700.        dc.w    1581    ;SYMBOLS/ReadStatus returns
  1701.        dc.w    1582    ;SYMBOLS/CardProgramVoltage defs
  1702.        dc.w    1583    ;SYMBOLS/CardMiscControl bitdefs
  1703.        dc.w    1584    ;SYMBOLS/CardInterface defs
  1704.        dc.w    1585    ;SYMBOLS/Execute-in-place tuple
  1705.        dc.w    1586    ;SYMBOLS/TP_AmigaXIP
  1706.        dc.w    1587    ;SYMBOLS/TP_BOOTFLAGS bitdefs
  1707.        dc.w    1588    ;SYMBOLS/Allocation bitdefs
  1708.        dc.w    1589    ;SYMBOLS/Hardware Magic
  1709.        dc.w    1590    ;SYMBOLS/FileSysResource
  1710.        dc.w    1591    ;SYMBOLS/FileSysEntry
  1711.        dc.w    1592    ;KEY BINDINGS/Report key
  1712.        dc.w    1593    ;SYMBOLS/AudChannel structure
  1713.        dc.w    1594    ;SYMBOLS/Unit number defs
  1714.        dc.w    1595    ;SYMBOLS/Error numbers
  1715.        dc.w    1596    ;SYMBOLS/Return codes
  1716.        dc.w    1597    ;SYMBOLS/Constants
  1717.        dc.w    1598    ;SYMBOLS/IoBuff
  1718.        dc.w    1599    ;SYMBOLS/Access mode defs
  1719.        dc.w    1600    ;SYMBOLS/SeekF offset anchors
  1720.        dc.w    1601    ;SYMBOLS/RexxMsgPort
  1721.        dc.w    1602    ;SYMBOLS/Device types
  1722.        dc.w    1603    ;SYMBOLS/Private packet types
  1723.        dc.w    1604    ;SYMBOLS/Global flag bit defs
  1724.        dc.w    1605    ;SYMBOLS/Control flags mask
  1725.        dc.w    1606    ;SYMBOLS/Initialization constants
  1726.        dc.w    1607    ;SYMBOLS/Char attr flag values
  1727.        dc.w    1608    ;SYMBOLS/Char attr flag bits
  1728.        dc.w    1609    ;SYMBOLS/NexxStr
  1729.        dc.w    1610    ;SYMBOLS/String attribute values
  1730.        dc.w    1611    ;SYMBOLS/Combinations of flags
  1731.        dc.w    1612    ;SYMBOLS/String attribute bits
  1732.        dc.w    1613    ;SYMBOLS/Constants
  1733.        dc.w    1614    ;SYMBOLS/Command codes
  1734.        dc.w    1615    ;SYMBOLS/Command modifier flags
  1735.        dc.w    1616    ;SYMBOLS/Command modifier bits
  1736.        dc.w    1617    ;SYMBOLS/RexxRsrc
  1737.        dc.w    1618    ;SYMBOLS/Resource node types
  1738.        dc.w    1619    ;SYMBOLS/Global Data size
  1739.        dc.w    1620    ;SYMBOLS/RexxTask
  1740.        dc.w    1621    ;SYMBOLS/RexxTask flag bits
  1741.        dc.w    1622    ;SYMBOLS/Memory allocation defs
  1742.        dc.w    1623    ;SYMBOLS/SrcNode
  1743.        dc.w    1624    ;SYMBOLS/ClockData
  1744.        dc.w    1625    ;SYMBOLS/Hook
  1745.        dc.w    1626    ;SYMBOLS/NamedObject
  1746.        dc.w    1627    ;SYMBOLS/NamedObject tags
  1747.        dc.w    1628    ;SYMBOLS/ANO_Flags bitdefs
  1748.        dc.w    1629    ;SYMBOLS/PackTable bitdefs
  1749.        dc.w    1630    ;SYMBOLS/TagItem
  1750.        dc.w    1631    ;SYMBOLS/ti_Tag constants
  1751.        dc.w    1632    ;SYMBOLS/FilterTagItems specs
  1752.        dc.w    1633    ;SYMBOLS/MapTags types
  1753.        dc.w    1634    ;SYMBOLS/MergeTagItems types
  1754.        dc.w    1635    ;SYMBOLS/DiskObject constants
  1755.        dc.w    1636    ;SYMBOLS/Backfill values
  1756.        dc.w    1637    ;SYMBOLS/Icon no position
  1757.        dc.w    1638    ;SYMBOLS/AppMessage
  1758.        dc.w    1639    ;SYMBOLS/am_Version
  1759.        dc.w    1640    ;SYMBOLS/AppWindow
  1760.        dc.w    1641    ;SYMBOLS/AppIcon
  1761.        dc.w    1642    ;SYMBOLS/AppMenuItem
  1762.        dc.w    1643    ;SYMBOLS/AmigaGuide offsets
  1763.        dc.w    1644    ;SYMBOLS/Bullet offsets
  1764.        dc.w    1645    ;SYMBOLS/Card offsets
  1765.        dc.w    1646    ;SYMBOLS/ColorWheel offsets
  1766.        dc.w    1647    ;SYMBOLS/DataTypes offsets
  1767.        dc.w    1648    ;SYMBOLS/DTClass offsets
  1768.        dc.w    1649    ;SYMBOLS/IffParse offsets
  1769.        dc.w    1650    ;SYMBOLS/Input offsets
  1770.        dc.w    1651    ;SYMBOLS/Locale offsets
  1771.        dc.w    1652    ;SYMBOLS/SpriteDef structure
  1772.        dc.w    1653    ;OPTIONS 2/Interface/Delayed refresh/ON
  1773.        dc.w    1654    ;OPTIONS 2/Interface/Delayed refresh/OFF
  1774.        dc.w    1655    ;CURSOR/Pattern search/Set pattern string
  1775.        dc.w    1656    ;SYMBOLS/Screen types
  1776.        dc.w    1657    ;*/ZAP/Zap2
  1777.  
  1778. Special directives for Macros:
  1779. ==============================
  1780.  
  1781.     dc.w    $7FA1   ;LOCAL MACROS/Set macro label/#1
  1782.     dc.w    $7FA2   ;LOCAL MACROS/Set macro label/#2
  1783.     dc.w    $7FA3   ;LOCAL MACROS/Set macro label/#3
  1784.     dc.w    $7FA4   ;LOCAL MACROS/Set macro label/#4
  1785.     dc.w    $7FA5   ;LOCAL MACROS/Set macro label/#5
  1786.     dc.w    $7FE9   ;LOCAL MACROS/Commentary/None
  1787.     dc.w    $7FEA   ;LOCAL MACROS/Commentary/Light
  1788.     dc.w    $7FEB   ;LOCAL MACROS/Commentary/Normal
  1789.     dc.w    $7FEC   ;LOCAL MACROS/Commentary/Heavy
  1790.     dc.w    $7FED   ;LOCAL MACROS/Commentary/Full
  1791.     dc.w    $7FFD   ;LOCAL MACROS/Directives/Start conditional
  1792.     dc.w    $7FFE   ;LOCAL MACROS/Directives/End conditional
  1793.     dc.w    $7FFF   ;(Special number to force user to supply string)
  1794.  
  1795.     end
  1796.