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