home *** CD-ROM | disk | FTP | other *** search
/ Team Palmtops 7 / Palmtops_numero07.iso / Ti / Magazine / Tests / DOORSOSD.ZIP / a68k / History.log < prev   
Encoding:
Text File  |  1998-04-09  |  35.3 KB  |  986 lines

  1.        A 6 8 K    M A I N T E N A N C E    H I S T O R Y
  2.  
  3.  
  4. Version 2.71.F2 (David Ellsworth, January 22, 1998)
  5.  
  6.     Made A68k properly differentiate between PC-relative and
  7.     absolute references to external symbols.
  8.  
  9. Version 2.71.F1 (David Ellsworth, January 7, 1998)
  10.  
  11.     Made changes so that combinations of EQU, XREF, and XDEF
  12.     directives work better together. These changes were made in
  13.     order for Fargo II library linking to be easier to do.
  14.  
  15.     The F1 stands for Fargo patchlevel 1.
  16.  
  17. Version 2.71 (Charlie Gibbs, April 16, 1991)
  18.  
  19.     The following bugs in version 2.62 have been corrected:
  20.  
  21.           - Enforcer checks were being generated if command-line
  22.         parameters that took a numeric value had no value or
  23.         the value was invalid.  CalcValue was attempting to
  24.         look up a label in the symbol table, which having not
  25.         been allocated yet was causing a null pointer to be
  26.         dereferenced.  (Patrick Quaid)
  27.  
  28.     The following enhancements have been added:
  29.  
  30.           - Function prototyping has been added.  All function
  31.         prototypes are in a new include file, protos.h, which
  32.         is included by A68kdef.h.  Prototyping can be disabled
  33.         (for compilers which do not support it) by defining
  34.         the symbol __NOPROTO; in this case old-style function
  35.         declarations are generated instead.
  36.  
  37.  
  38. Version 2.70 (Charlie Gibbs, February 25, 1991)
  39.  
  40.     The following bugs in version 2.62 have been corrected:
  41.  
  42.           - The definition of tempstr in WriteSymTab (24 bytes)
  43.         was being overrun in some cases, causing A68k to hang.
  44.         Its length has been increased to MAXLINE.
  45.         (Paul Gittings, John Antonishek)
  46.  
  47.           - If A7 was in a list of registers in the source operand
  48.         of a MOVEM instruction, all registers would be moved
  49.         (i.e. the mask was set to 0xFFFF).  (Risto Kaivola)
  50.  
  51.           - Octal or binary values that set bit 31 were being
  52.         flagged as overflow errors.  (Harvey Taylor)
  53.  
  54.           - ORGs were unnecessarily restricted when the -s flag was
  55.         specified.  Everything should be absolute when S-records
  56.         are generated, and any absolute ORG should be allowed.
  57.  
  58.     The following enhancements have been added:
  59.  
  60.           - A new INCBIN directive has been added.  It takes a
  61.         single operand, a file name whose contents are
  62.         included as is at the current position in the
  63.         object code file.  (Julian Gold, Colin Fox)
  64.  
  65.           - The opcode TTL is now accepted as a synonym for TITLE.
  66.  
  67.           - The file mode in the creat() call in xopen() has been
  68.         changed from 1 to 0644; this provides a reasonable file
  69.         mode when compiled on a Unix system.  (Paul Gittings)
  70.  
  71.           - A new command-line keyword (-g) has been added.  It
  72.         causes all undefined symbols to be treated as XREF.
  73.         (Paul Gittings, Steve Hawtin (who provided the code))
  74.  
  75.           - All initialized fields in opcodes.c have been made global
  76.         for compatibilty with more compilers.  (Steve Hawtin)
  77.  
  78.           - The register list in a MOVEM instruction can now be an
  79.         immediate operand which specifies the actual mask bits.
  80.         (Paul Gittings, who provided the code)
  81.  
  82.           - The default value for the -q option has been changed
  83.         from 10 to 100.
  84.  
  85.  
  86. Version 2.62 (Charlie Gibbs, March 19, 1990)
  87.  
  88.     The following enhancements have been added:
  89.  
  90.           - A new command-line keyword (-m) has been added.
  91.         It must be immediately followed by a number which
  92.         specifies the offset from the beginning of a small
  93.         data section to the base register specified in the
  94.         NEAR directive (defaulting to A4).  If this parameter
  95.         is omitted, the offset defaults to 32768 bytes.  This
  96.         parameter is meaningful only if the NEAR directive
  97.         is used.  (Colin Fox)
  98.  
  99.  
  100. Version 2.61 (Charlie Gibbs, January 11, 1990)
  101.  
  102.     The following bugs in version 2.6 have been corrected:
  103.  
  104.           - ORG and RORG at the beginning of the program were
  105.         being processed incorrectly.  (Jukka Jarvinen)
  106.  
  107.           - A branch instruction to its own label, e.g.
  108.             lab    bra    lab
  109.         would cause phase errors; the instruction was
  110.         being shortened on pass 2 but not on pass 1.
  111.         (Kevin Hoare)
  112.  
  113.     The following enhancements have been added:
  114.  
  115.           - Labels may begin with '@' if the next character
  116.         is not numeric (to avoid confusion with octal
  117.         constants).  (Colin Fox)
  118.  
  119.           - Write errors now cause A68k to terminate gracefully
  120.         with an appropriate error message.
  121.  
  122.  
  123. Version 2.6 (Charlie Gibbs, November 2, 1989)
  124.  
  125.     The following bugs in version 2.5 have been corrected:
  126.  
  127.           - If a space is left between a file keyword and the file name
  128.         (e.g. A68k -l foo.lst foo.asm) the source file was scratched.
  129.         (E. Lenz)
  130.  
  131.           - All code using post-increment addressing in references to
  132.         toupper() has been reworked to avoid post-increment.  Such
  133.         code does not work correctly if toupper() is a macro.
  134.         (John K. Antonishek)
  135.  
  136.           - The spelling of the include files A68kdef.h and A68kglb.h
  137.         has been made correct as to case.  This simplifies porting
  138.         to case-sensitive file systems.  (John K. Antonishek)
  139.  
  140.           - If comments immediately follow the operands of an XDEF,
  141.         XREF, or PUBLIC statement with no intervening white space
  142.         (as in any of the following statements), A68k would hang:
  143.             XDEF    foo;comments
  144.             XREF    bar;comments
  145.             PUBLIC    blah;comments
  146.         (Bruce Dawson)
  147.  
  148.           - Numeric values (any radix) which do not fit into 32 bits
  149.         were not being flagged.  (E. Lenz)
  150.  
  151.           - DC statements with no operands were not being flagged.
  152.         (E. Lenz)
  153.  
  154.           - The -f option was suggesting short branches where the
  155.         displacement would be zero, which is illegal.  (E. Lenz)
  156.  
  157.           - Branches outside the current section had the offset
  158.         set to zero.  (Matt Dillon, who provided a fix)
  159.  
  160.           - ADDI, ANDI, CMPI, EORI, ORI, and SUBI instructions whose
  161.         source operand was not immediate were not being flagged.
  162.         (E. Lenz)
  163.  
  164.           - Unary NOT of a byte or word immediate operand whose value
  165.         was negative was being flagged as a size error.
  166.         (John Aycock)
  167.  
  168.           - All forward branches were rejected when the NEAR
  169.         directive was active.  (Colin Fox)
  170.  
  171.     The following enhancements have been added:
  172.  
  173.           - Single-byte immediate operands (e.g. MOVE.B #-1,(a0))
  174.         are now padded with a high-order byte of zero, rather
  175.         than being sign-extended.  (E. Lenz)
  176.  
  177.           - The message "Error in operand format." has been changed
  178.         to "Addressing mode not allowed here." in places where
  179.         the latter message is more appropriate.
  180.  
  181.           - If the -q option species a value of zero (or no value
  182.         is given, defaulting to zero), all console output will
  183.         be suppressed except for error messages, if any.
  184.         (Matt Dillon)
  185.  
  186.           - The 128-byte restriction on constant length no longer
  187.         applies to the entire code generated by a single DCB
  188.         statement; statements such as
  189.             DCB.L    64,0
  190.         can now be handled.  (Colin Fox)
  191.  
  192.           - Forward branches are now optimized.  The occasional
  193.         instruction may be missed due to ripple effects, but
  194.         this shouldn't happen frequently.  The -f switch
  195.         will flag any such instructions.
  196.  
  197.           - The -d switch can now be followed by an optional
  198.         prefix string (with or without a leading !) which
  199.         specifies which symbols should or should not be
  200.         included in the symbol table dump.  (Lionel Hummel)
  201.  
  202.  
  203. Version 2.5 (Charlie Gibbs, June 18, 1989)
  204.  
  205.     The following bugs in version 2.42 have been corrected:
  206.  
  207.           - Upon normal termination, A68k occasionally crashed in
  208.         quit_cleanup by trying to free the relocation table twice.
  209.         (Jeff Lydiatt and D. McClelland, who worked out a fix)
  210.  
  211.           - MEMF_CHIP and MEMF_FAST bits were being set in the
  212.         hunk length, rather than in the hunk type.  (Richard Man)
  213.  
  214.           - BCHG.L, BCLR.L, BSET.L, and BTST.L were causing
  215.         phase errors.  The test to ignore the .L specification
  216.         (added in version 1.21) was being skipped in pass 1
  217.         by an optimization added in version 2.4.  (David Hankins)
  218.  
  219.           - PC-relative offset to a label was calculated as two bytes
  220.         too great for MOVEM instructions.  (Tony Parkhurst)
  221.  
  222.     The following enhancements have been added:
  223.  
  224.           - If the length code on an opcode is not .B, .W, .L, .S,
  225.         or omitted, it will be flagged as an error.
  226.  
  227.           - JMP.S and JSR.S are flagged as errors.  (Jim Butterfield)
  228.  
  229.           - Operands of the form (xxxx).W and (xxxx).L are now
  230.         supported.  This enables absolute short or absolute
  231.         long addressing to be explicitly specified.
  232.  
  233.           - All optimization can be disabled by the new -n switch.
  234.         (David Hankins)
  235.  
  236.           - The NEAR directive can now take a single operand, which
  237.         can be any address register (or equated symbol) except
  238.         A7.  If omitted, the register defaults to A4.
  239.  
  240.           - Instructions of the form BTST Dn,#nn are no longer
  241.         flagged.  This obscure variant is nonetheless legal.
  242.  
  243.  
  244. Version 2.42 (Charlie Gibbs, January 10, 1989)
  245.  
  246.     The following bugs in version 2.41 have been corrected:
  247.  
  248.           - Small code/data conversion was sometimes taking place
  249.         when no NEAR directive was active.  (Jeff Lydiatt)
  250.  
  251.  
  252. Version 2.41 (Charlie Gibbs, January 6, 1989)
  253.  
  254.     The following bugs in version 2.4 have been corrected:
  255.  
  256.           - The second operand of LINK instructions was
  257.         being erroneously flagged.
  258.  
  259.           - If a macro was used before it was defined, it
  260.         was being expanded during pass 2 but not during
  261.         pass 1, causing severe phase errors.  Attempts
  262.         to use a macro before it is defined will now
  263.         be flagged as invalid opcodes.  (Colin Fox)
  264.  
  265.  
  266. Version 2.4 (Charlie Gibbs, January 4, 1989)
  267.  
  268.     The following bugs in version 2.31 have been corrected:
  269.  
  270.           - If comments immediately followed the operands of
  271.         a DC statement with no intervening white space,
  272.         A68k would hang.  (Ulf Nordquist)
  273.  
  274.           - In the following command:
  275.             a68k -w 15000 myprog.asm
  276.         the space between the -w and 15000 would cause A68k
  277.         to look for a source file called "15000", and to think
  278.         that the object file is to be called "myprog.asm".
  279.         When it can't find "15000" it would display an error
  280.         message and scratch "myprog.asm".  (Jeff Lydiatt)
  281.  
  282.           - If an INCLUDE file that is skipped on pass 2 contains
  283.         a macro call, subsequent uses of \@ (macro sequence
  284.         number are subsequently flagged.  The macro counter
  285.         must be bumped along with the line number when
  286.         skipping an INCLUDE.  (Colin Fox, Harvey Taylor)
  287.  
  288.     The following enhancements have been added:
  289.  
  290.           - ORG and RORG are now fully implemented.
  291.  
  292.           - The SET symbols A68k, a68K, and a68k are defined in the
  293.         same way as A68K, making it effectively case-insensitive.
  294.         (Colin Fox)
  295.  
  296.           - MOVEM and REG now accept equated register names (EQUR)
  297.         in register lists.  (Bruce Dawson)
  298.  
  299.           - INCLUDE files will now be skipped on pass 2 even when
  300.         a listing file is requested, if the listing has been
  301.         turned off by a NOLIST directive before the INCLUDE,
  302.         and is not turned on until after the end of the
  303.         INCLUDE file has been reached.  (Colin Fox)
  304.  
  305.           - A new switch (-f) causes forward branches (Bcc, BRA, BSR)
  306.         that could be coded as short branches (Bcc.S etc.) to be
  307.         flagged.  This flag is not considered to be an error.
  308.  
  309.           - A limited small code / small data model has been provided.
  310.         It is activated by a NEAR directive in the source code, and
  311.         is de-activated by a FAR directive.  External variables
  312.         must be declared at the beginning of the program, which
  313.         must consist of only two sections (CODE and DATA or BSS).
  314.         All forward data references are assumed to be PC-relative
  315.         if in the CODE section, A4-relative if in the DATA/BSS
  316.         section, and absolute word if absolute values.  Any
  317.         forward references which cannot be resolved to one of
  318.         these three in pass 2 will be flagged as errors, as will
  319.         any attempt to define more than two sections.  A4 is
  320.         assumed to point to the start of the DATA/BSS section
  321.         plus 32768 bytes, and must be loaded by a MOVE.L
  322.         instruction using immediate mode unless this instruction
  323.         is not enclosed within NEAR and FAR directives.
  324.  
  325.           - Miscellaneous optimizations, for speed, including:
  326.         Most of the object code generator in pass 1 is bypassed.
  327.         If GetValue gets a single term it takes a short cut.
  328.         IsOperator now uses a table look-up.
  329.         Instructions now only searches that portion of the
  330.         opcode table whose opcodes start with the same letter
  331.         as the OpCode being searched for.
  332.  
  333.  
  334. Version 2.31 (Charlie Gibbs, November 30, 1988)
  335.  
  336.     The following bugs in version 2.3 have been corrected:
  337.  
  338.           - Even though a macro definition was being skipped
  339.         by IFxx/ENDC, its ENDM directive was still being
  340.         detected, causing spurious diagnostics.  (Harvey Taylor)
  341.  
  342.           - NOP was not being recognized.  When moving all
  343.         directives into the opcode table, NOL and NOLIST
  344.         were placed after NOP, rather than before.  (Colin Fox)
  345.  
  346.           - Symbols defined in the current module and declared
  347.         as PUBLIC were not being written to the object code
  348.         file when -d was specified.  (Colin Fox)
  349.  
  350.           - Conversion of 0(An) to (An) (implemented in version
  351.         1.2) was causing errors in the MOVEP instruction,
  352.         which requires a displacement even if it is zero.
  353.         This conversion is now disabled for MOVEP instructions.
  354.  
  355.           -    User macros containing invalid opcodes caused A68k
  356.         to get lost when returning to the outer source file.
  357.         (Colin Fox)
  358.  
  359.           - Large values of -w (over 6000 or so) would cause
  360.         a visit from the Guru.  The work field in HashIt
  361.         was overflowing and going negative.  Changing it
  362.         to unsigned corrected the problem.  (Colin Fox)
  363.  
  364.           - Although user macros are no longer displayed when
  365.         -q is a negative number, the calling file's name
  366.         was still being displayed at the end of the macro.
  367.  
  368.  
  369. Version 2.3 (Charlie Gibbs, November 21, 1988)
  370.  
  371.     The following enhancements have been added:
  372.  
  373.           - All file I/O has been rewritten to use level 1 I/O
  374.         (open, creat, close, read, write, and lseek) instead
  375.         of level 2 I/O.  A68k now does its own buffering and
  376.         unbuffering to reduce system overhead and increase speed.
  377.         (Bruce Dawson)
  378.  
  379.           - All assembler directives have been incorporated into
  380.         the opcode table.  Since the opcode search now looks
  381.         up directives as well, speed is increased.
  382.  
  383.           - Miscellaneous code optimization for additional speed.
  384.  
  385.  
  386. Version 2.2 (Charlie Gibbs, November 4, 1988)
  387.  
  388.     The following bugs in version 2.1 have been corrected:
  389.  
  390.           - Macro definitions within an INCLUDE file were
  391.         disabling the test for skipping the file on pass 2.
  392.  
  393.           - Errors encountered in an INCLUDE file on pass 1
  394.         were not disabling the skip of the file on pass 2 -
  395.         the pertinent error messages could not appear.
  396.  
  397.           - XDEF information and optional symbol table dumps were
  398.         not being written to the object code file for any
  399.         hunks that did not contain relocatable code or data.
  400.         (Colin Fox)
  401.  
  402.     The following enhancements have been added:
  403.  
  404.           - If the -q option is specified as a negative value,
  405.         user macros are no longer included in line number
  406.         displays, reducing clutter.
  407.  
  408.           - Some source code has been re-arranged to reduce size.
  409.  
  410.  
  411. Version 2.1 (Charlie Gibbs, November 1, 1988)
  412.  
  413.     The following bugs in version 2.00 have been corrected:
  414.  
  415.           - Macro definitions that span two chunks of memory
  416.         were causing garbage and probably a crash when
  417.         the macro was being expanded.  Pointers were not
  418.         being handled properly when linking the two chunks.
  419.  
  420.           - Statements such as EQU and SET were not being flagged
  421.         as illegal forward references if referencing a label
  422.         defined on the same line, e.g.
  423.             LABEL    SET    LABEL+1
  424.  
  425.           - The position within macros and INCLUDE files was
  426.         sometimes out by one line when reported in error
  427.         messages (and the new feature of the -q switch).
  428.  
  429.     The following enhancements have been added:
  430.  
  431.           - If the -q option is specified as a negative value,
  432.         line numbers will be displayed as positions within
  433.         the current module (whose name is also displayed),
  434.         rather than a total statement count.  (Bruce Dawson)
  435.  
  436.           - INCLUDE files can be skipped on pass 2 even if they
  437.         contain SET statements - the values of all symbols
  438.         SET in the INCLUDE file are stored (as at the end
  439.         of the file) in a separate table and are patched
  440.         when the INCLUDE file is skipped.  (Bruce Dawson)
  441.  
  442.  
  443. Version 2.00 (Charlie Gibbs, October 26, 1988)
  444.  
  445.     The following bugs in version 1.24 have been corrected:
  446.  
  447.           - The last digit of the statement number display
  448.         (lengthened in version 1.24) was not being erased
  449.         before displaying error messages.
  450.  
  451.           - A68k would go into a loop if a user macro was
  452.         missing an ENDC directive.  This error is now
  453.         flagged (see below).
  454.  
  455.     The following enhancements have been added:
  456.  
  457.           - The highest statement number displayed at the end of
  458.         each pass is now left on the screen.  This means that,
  459.         at the end of pass 1, you can always see how many lines
  460.         A68k will have to process in pass 2, giving an idea of
  461.         how how much longer you have to wait.  (Colin Fox)
  462.  
  463.           - The symbol table is now built using a hashing algorithm.
  464.         This eliminates the slowdown that occurs in pass 1 as
  465.         the symbol table grows, due to the old insertion process.
  466.         (Bruce Dawson)
  467.  
  468.           - If A68k terminates abnormally for any reason (such as
  469.         insufficient memory) the object file is scratched
  470.         (unless the -k option is set).  (Bruce Dawson)
  471.  
  472.           - Any INCLUDE files which cannot be found are flagged
  473.         as errors in pass 1, and the assembly is aborted
  474.         at the end of pass 1.  (Bruce Dawson)
  475.  
  476.           - Missing ENDC directives are flagged in macro expansions.
  477.         Also, missing or unpaired ENDC directives in user macros
  478.         are flagged.
  479.  
  480.           - If an INCLUDE file doesn't generate any code and no
  481.         listing file is required, it won't be read again in
  482.         pass 2.  The statement numbers will be bumped to keep
  483.         in proper alignment.  This can really speed up
  484.         assemblies that INCLUDE lots of equates.  (Colin Fox)
  485.  
  486.  
  487. Version 1.24 (Charlie Gibbs, October 11, 1988)
  488.  
  489.     The following bugs in version 1.23 have been corrected:
  490.  
  491.           - MOVEA to a data register was not being flagged, even
  492.         though all other invalid addressing modes were.
  493.  
  494.           - Attempts to ORG out of the current hunk (including
  495.         to an absolute address) were not being flagged.  (E. Lenz)
  496.  
  497.           - If the size of the bottom of the primary heap (symbols
  498.         and macro text) exceeded 32K, any further macro
  499.         definitions would expand as endless garbage.  (Colin Fox)
  500.  
  501.           - If the size of the bottom of the primary heap (symbols
  502.         and macro text) exceeded 64K, any further external
  503.         symbols (XDEF) would be flagged as relocatability
  504.         errors upon each reference.  (Colin Fox)
  505.  
  506.     The following enhancements have been added:
  507.  
  508.           - Where statement numbers are displayed as fixed-length
  509.         fields, their maximum length has been increased
  510.         from 4 digits to 5.  (Colin Fox)
  511.  
  512.           - The PUBLIC directive has been implemented.
  513.         As with the Aztec assembler, any labels defined as
  514.         PUBLIC will be treated as XDEF if defined within
  515.         the current module, and XREF otherwise.  (Jeff Lydiatt)
  516.  
  517.  
  518. Version 1.23 (Charlie Gibbs, September 20, 1988)
  519.  
  520.     The following bugs in version 1.22 have been corrected:
  521.  
  522.           - The test for a third operand was producing erroneous
  523.         error messages on instructions whose second operand
  524.         was in immediate mode.  The '#' was not being taken
  525.         into account, since it is not copied to DestOp.
  526.  
  527.  
  528. Version 1.22 (Charlie Gibbs, August 31, 1988)
  529.  
  530.     The following bugs in version 1.21 have been corrected:
  531.  
  532.           - Expressions of the form R-A, where R is a relocatable
  533.         term or expression and A is an absolute term or
  534.         expression, were being flagged as relocation errors.
  535.         This was due to a bug in the routine which should
  536.         (but did not) flag expressions of the form A-R.
  537.         (David Ashley)
  538.  
  539.           - Instructions with three operands were not being
  540.         flagged as errors.  This can be caused by an extra
  541.         comma being typed in the instruction, as in:
  542.             BTST #0,state+3,(a5)
  543.         The second comma should not be present.  (David Ashley)
  544.  
  545.     The following enhancements have been added:
  546.  
  547.           - Excess spacing has been removed from the listing file.
  548.         These changes are similar to those already made to the
  549.         console output (probably at about version 1.05).
  550.  
  551.           - If the first statement in the source file is TTL or
  552.         PAGE, an empty page is no longer produced at the
  553.         start of the listing.
  554.  
  555.  
  556. Version 1.21 (Charlie Gibbs, July 29, 1988)
  557.  
  558.     The following bugs in version 1.2 have been corrected:
  559.  
  560.           - The instruction
  561.             BTST.L    #8,D0
  562.         had a long-word value generated for the bit number.
  563.         This bug also applies to BSET, BCLR, and BCHG.
  564.         The .L specification is now ignored.  (Ulf Nordquist)
  565.  
  566.  
  567. Version 1.2 (Charlie Gibbs, July 19, 1988)
  568.  
  569.     The following bugs in version 1.12 have been corrected:
  570.  
  571.           - A reference to the label of the current instruction
  572.         was being converted to PC-relative on pass 2 but not
  573.         on pass 1.  This was causing phase errors.  The label
  574.         hasn't been added to the symbol table at the time the
  575.         instruction is processed.  Conversion to PC-relative
  576.         addressing will now not be attempted in this case,
  577.         although references to * can and will be converted.
  578.  
  579.           - All string-type DC statements, regardless of length,
  580.         were being treated as DC.B.  For example, DC.L 'A'
  581.         would generate only one byte of object code.
  582.         (Gerald Hull)
  583.  
  584.           - DC.W and DC.B statements were not being checked to
  585.         ensure that their values would fit into a word or
  586.         a byte respectively.
  587.  
  588.           - If a comment line had white space preceding the
  589.         asterisk, A68k would hang.  Actually, it was
  590.         interpreting the asterisk as an opcode and trying
  591.         to open a macro file called "*".  Since under
  592.         AmigaDOS such a file is the console, A68k was
  593.         actually waiting for console input.
  594.  
  595.           - If an instruction with no operands (such as RTS
  596.         or NOP) followed MOVE.L #rel,D0 where "rel" was
  597.         a relocatable symbol, the RTS (etc.) would have
  598.         its nonexistent operands flagged as invalid.
  599.  
  600.           - SECTION names enclosed in quotes were not being
  601.         handled correctly.
  602.  
  603.           - Source modules that did not generate any code, data,
  604.         or BSS areas, but only defined symbols, such as
  605.             label    equ    4
  606.                 xdef    label
  607.                 end
  608.         were generating incomplete object modules.
  609.  
  610.     The following enhancements have been added:
  611.  
  612.           - Jeff's experimental hunk code (prefixing hunk names
  613.         with a sequence number before adding to the symbol
  614.         table) has been permanently incorporated.  It seems
  615.         to work better with BLink on programs that have
  616.         hunks continued farther on in the source code.
  617.         (Jeff Lydiatt)
  618.  
  619.           - The macro parameter \0, which is replaced by the
  620.         size specification in the macro call (B, W, or L,
  621.         defaulting to W) is now supported.  (Gerald Hull)
  622.  
  623.           - Operands of the form 0(An) will be treated as (An).
  624.         (Bruce Dawson)
  625.  
  626.  
  627. Version 1.12 (Charlie Gibbs, May 25, 1988)
  628.  
  629.     The following bugs in version 1.11 have been corrected:
  630.  
  631.           - If an instruction with no operands (e.g. RTS)
  632.         followed a MOVE.L #label,D0 the RTS would be
  633.         flagged with a relocatability error.  Src.Mode
  634.         and Dest.Mode were not being cleared.  (Colin Fox)
  635.  
  636.  
  637. Version 1.11 (Charlie Gibbs, April 6, 1988)
  638.  
  639.     The following bugs in version 1.10 have been corrected:
  640.  
  641.           - A68k would go into a loop while processing the
  642.         arguments of a macro call, if these arguments are
  643.         followed by comments separated from the arguments
  644.         by one or more tab characters, and the -t switch
  645.         is specified on the command line.  All tests for
  646.         blanks have been replaced by calls to isspace().
  647.  
  648.           -    The operand alignment checks added in version 1.06
  649.         were erroneously testing the following instructions:
  650.             BCHG
  651.             BCLR
  652.             BSET
  653.             BTST
  654.             NBCD
  655.             Scc
  656.             TAS
  657.         These instructions are now exempt from alignment checking.
  658.  
  659.     The following enhancements have been added:
  660.  
  661.           - A listing file name can now be specified with the
  662.         -x switch; it is no longer necessary to specify
  663.         both the -l and -x switches to produce a cross-
  664.         reference listing with a name other than the default.
  665.  
  666.           - DS statements with more than one operand are
  667.         flagged and ignored (in case they should be DC).
  668.  
  669.           - A character string used as a numeric value is
  670.         flagged and set to zero if it is more than four
  671.         characters long.
  672.  
  673.  
  674. Version 1.10 (Charlie Gibbs, March 20, 1988)
  675.  
  676.     The following bugs in version 1.07 have been corrected:
  677.  
  678.           - BSS sections were not being written to the object
  679.         code file except for a BSS section at the end of
  680.         a program.  This is due to a bug in the code added
  681.         in version 1.05 to overwrite null sections.
  682.  
  683.           - If a source module contained a mixture of lengths
  684.         (8, 16, or 32 bits) in external references (XREF)
  685.         to the same label, all references were being treated
  686.         as if they has the length of the first reference.
  687.  
  688.     The following enhancements have been added:
  689.  
  690.           - DS operands that are either a forward references
  691.         or relocatable are now flagged.
  692.  
  693.           - Short branches (Bcc.S, including BRA and BSR) to
  694.         the next instruction (i.e. a displacement of zero)
  695.         are illegal - the processor takes the displacement
  696.         from the next word.  Attempts to generate a short
  697.         displacement of zero are now flagged.
  698.  
  699.  
  700. Version 1.07 (Charlie Gibbs, March 11, 1988)
  701.  
  702.     The following bugs in version 1.06 have been corrected:
  703.  
  704.           - Instructions that take no operands (such as RTS)
  705.         were being flagged if they had comments that were
  706.         not preceded by a semicolon.
  707.  
  708.     The following enhancements have been added:
  709.  
  710.           - The following synonyms have been added:
  711.             CSEG  for CODE (Aztec compatibility)
  712.             DSEG  for DATA    "          "
  713.             ENDIF for ENDC (Assempro compatibility)
  714.             =     for EQU      "           "
  715.             |     for !        "           "
  716.  
  717.           - Strings and character values may be delimited by
  718.         either apostrophes (') or quotation marks (").
  719.         The character not used as a delimiter can be used
  720.         within the string without doubling it.  For example,
  721.             DC.B    "This is Charlie's assembler"
  722.         produces the same code as
  723.             DC.B    'This is Charlie''s assembler"
  724.  
  725.           - The object code file will be scratched if any errors
  726.         were found, unless the -k (keep) flag is set.
  727.         (Bruce Dawson)
  728.  
  729.           - The symbol .A68K is automatically defined at the
  730.         beginning of each assembly as a SET symbol with an
  731.         absolute value of 1.  This enables programs to check
  732.         whether they're being assembled by this assembler.
  733.         (Jeff Lydiatt)
  734.  
  735.           - The symbol table insertion routine has been
  736.         greatly speeded up.
  737.  
  738.  
  739. Version 1.06 (Charlie Gibbs, March 6, 1988)
  740.  
  741.     The following bugs in version 1.05 have been corrected:
  742.  
  743.           - Lines skipped by IFxx/ENDC were not being counted
  744.         in the line number given in error messages.
  745.  
  746.           - DATA and BSS sections may be unnamed, or have names
  747.         the same as CODE sections.  Honest, I thought section
  748.         names had to be unique even across types.
  749.  
  750.           - CHIP and FAST options on the CODE, DATA, and BSS
  751.         synonyms for the SECTION directive were not being
  752.         handled correctly.
  753.  
  754.           - XDEF records and symbol table records (if desired)
  755.         were not being produced for symbols defined ahead
  756.         of the first object-code producing instruction.
  757.  
  758.     The following enhancements have been added:
  759.  
  760.           - The CNOP instruction can now force alignment
  761.         relative to any boundary up to 128 bytes.
  762.         The second operand must still be a power of 2.
  763.  
  764.           - The -q switch has been added to change the frequency
  765.         with which progress reports (current line number) are
  766.         displayed on the console.  The default remains at
  767.         every 10 lines (-q10).  If you specify -q (no interval)
  768.         or -q0 the line number displays will be suppressed.
  769.         This will make assemblies run slightly faster due to
  770.         reduced console I/O.  (Bill Henning)
  771.  
  772.           - The -t switch has been added to keep any tabs in the
  773.         source file when producing the listing file, as well as
  774.         generating tabs elsewhere whenever possible.  This
  775.         speeds up assemblies and gives smaller listing files,
  776.         but such listing files cannot be displayed on devices
  777.         that do not assume a tab stop in every 8th position.
  778.         (Bruce Dawson)
  779.  
  780.           - Any single-operand instruction with two operands,
  781.         and any no-operand instruction with any operands,
  782.         will be flagged.
  783.  
  784.           - Relocatable 8- or 16-bit immediate operands
  785.         will be flagged.  They blow up BLink.
  786.  
  787.           - Named local labels are now supported.  Their names
  788.         are formed in the same way as normal labels, but are
  789.         then preceded by a backslash.  Their scope is the
  790.         same as normal local labels (nnn$).  (Colin Fox)
  791.  
  792.           - An alignment error will be flagged in the following cases:
  793.             Odd displacement on a LINK instruction
  794.             Bcc or DBcc to an odd address
  795.             In any word or long-word instruction, any operand
  796.               using the following addressing modes:
  797.             Address register indirect with displacement
  798.             Address register indirect with index and displacement
  799.             Absolute short
  800.             Absolute long
  801.             Program counter indirect with displacement
  802.             Program counter indirect with index and displacement
  803.             LEA and PEA instructions are exempt from these tests.
  804.  
  805.           - If a section is found to contain no data, A68k will
  806.         back up to its beginning and overwrite it with the
  807.         next section.  The result is that null sections
  808.         will no longer appear in the object file.
  809.  
  810.  
  811. Version 1.05 (Charlie Gibbs, October 30, 1987)
  812.  
  813.     The following bugs in version 1.04 have been corrected:
  814.  
  815.           - If a section was continued later in the program, e.g.
  816.  
  817.             SECTION    prog,CODE
  818.               <code>
  819.             SECTION    variables,BSS
  820.               <DS statements>
  821.             SECTION    prog,CODE
  822.               <more code>
  823.  
  824.         bad relocation information was being generated for
  825.         the continuation of the SECTION.  This bug was left
  826.         over from version 1.03.
  827.  
  828.     The following enhancements have been added:
  829.  
  830.           - All console output except for error messages is now
  831.         sent to stderr - this enables stdout to be redirected,
  832.         producing an error file.
  833.  
  834.           - Console (stderr) output has been modified to require
  835.         fewer lines on the screen.
  836.  
  837.           - If an error occurs while expanding a macro or INCLUDE
  838.         file, the position of the call in each outer file is
  839.         given along with the position in the current (innermost)
  840.         file.  Tracing continues until the outermost file (i.e.
  841.         the original source file) is reached.
  842.  
  843.  
  844. Version 1.04 (Charlie Gibbs, October 21, 1987)
  845.  
  846.     The following bugs in version 1.03 have been corrected:
  847.  
  848.           - MOVE was being converted to MOVEQ regardless of
  849.         operand size - this conversion is legal only
  850.         for longword MOVEs.
  851.  
  852.           - Modifications to version 1.03 caused bad relocatable
  853.         entries to be generated.
  854.  
  855.  
  856. Version 1.03 (Charlie Gibbs, October 14, 1987)
  857.  
  858.     The following bugs in version 1.02 have been corrected:
  859.  
  860.           - The following situation was causing phase errors:
  861.  
  862.                 xdef    label
  863.                 bra    label
  864.                  .
  865.                 <at least 128 bytes of object code>
  866.                  .
  867.             label:
  868.  
  869.         (The XDEF was fooling A68k into thinking that "label"
  870.         was defined within 128 bytes of the BRA instruction
  871.         on pass 1, although on pass 2 it knew better.
  872.  
  873.           - If the first operand of an two-operand executable
  874.         instruction contained a character term containing a
  875.         left or right parenthesis, it would generate error
  876.         messages and be incorrectly evaluated.
  877.  
  878.           - Labels that don't begin in column 1 (denoted by a
  879.         trailing colon) caused a Guru Meditation.
  880.  
  881.           - Certain ADD and SUB instructions using PC-relative
  882.         addressing may cause phase errors.  If the displacement
  883.         is in the range 1 to 8 inclusive, the instruction was
  884.         erroneously converted to ADDQ or SUBQ during pass 2.
  885.  
  886.     The following enhancements have been added:
  887.  
  888.           - The -z option has been added to display the
  889.         current source program line on stdout as it
  890.         is read, optionally over a given range.
  891.         This feature is provided for debugging purposes.
  892.  
  893.           - Bcc, BSR, and DBcc to labels in other than the current
  894.         section is now supported.  A 16-bit relocation entry
  895.         will be generated for each such reference.
  896.  
  897.           - PC relative mode will be generated for backward
  898.         references to labels within the current CODE section
  899.         if legal for the current instruction.  Forward
  900.         references will not be converted, since there is
  901.         no way of telling which section the label is in
  902.         during pass 1.
  903.  
  904.           - The cumulative sizes of all sections by type (i.e.
  905.         CODE, DATA, and BSS) will be displayed at the end
  906.         of the listing file and the console display.
  907.         (Bruce Dawson)
  908.  
  909.           - In the symbol table dump, section names will no
  910.         longer be indicated just as SECTION, but rather
  911.         as CODE, DATA, or BSS, depending on type.
  912.  
  913.  
  914. Version 1.02 (Charlie Gibbs, September 9, 1987)
  915.  
  916.     The following bugs in version 1.01 have been corrected:
  917.  
  918.           - Duplicate labels were not being flagged.
  919.  
  920.           - XDEF symbols were not being dumped to the
  921.         object code file when the -d option was set.
  922.  
  923.     The following enhancements have been added:
  924.  
  925.           - A header file is now supported.  If the parameter
  926.         -h<filespec> is included on the command line, the
  927.         specified file will be included as if the source
  928.         file's first line was " include <filespec>".
  929.         The file specification may include a path name,
  930.         although the include path names given by the
  931.         -i parameter (if any) will also be searched.
  932.  
  933.           - An equate file can now be produced.  If the parameter
  934.         -e<filespec> is included on the command line, a file
  935.         will be written containing EQU statements for any
  936.         symbol whose value is absolute.  If -e is specified
  937.         without <filespec>, the name of the file will be
  938.         formed in the same way as the list file, except with
  939.         an extension of ".equ".  (Bruce Dawson)
  940.  
  941.     The following changes have been made to existing logic:
  942.  
  943.           - No symbol table dump will be produced unless the
  944.         -x (cross-reference) switch is set.  Formerly a
  945.         symbol table dump was always produced, with only
  946.         the cross-reference portion optional.
  947.  
  948.  
  949. Version 1.01 (Charlie Gibbs, August 20, 1987)
  950.  
  951.     The following bugs in version 1.00 have been corrected:
  952.  
  953.           - Long-word constants and storage areas were being
  954.         aligned on a double-word boundary.  The only place
  955.         where double-word alignment is now forced is at a
  956.         break between SECTIONs, since the length of an
  957.         AmigaDOS hunk must be a multiple of 4 bytes.
  958.         (CNOP 0,4 can still be used if double-word
  959.         alignment is desired by the programmer.)
  960.  
  961.           - If a label on an END statement or the first statement
  962.         of a SECTION was named in an XDEF statement, it would
  963.         not be written to the object code file.  The latter
  964.         case includes both the label of a SECTION directive
  965.         and the label of the first executable instruction in
  966.         the absence of any SECTION directives (defaulting to
  967.         an unnamed CODE section).  In the final case (default
  968.         unnamed CODE section), references to XREF symbols
  969.         in the first statement would also not be written
  970.         to the object code file.
  971.  
  972.           - If the last statement in the source file was not
  973.         terminated with a newline character (premature EOF),
  974.         it was being ignored altogether.
  975.  
  976.           - A register list as the source operand of a MOVE
  977.         instruction was not being flagged as an error.
  978.         (MOVE to a register list was being flagged, however.)
  979.  
  980.           - MOVE from USP was generating incorrect code.  Also,
  981.         MOVE from SR or CCR to an address register was
  982.         generating incorrect code rather than being flagged.
  983.  
  984.  
  985. Version 1.00 (Charlie Gibbs, June 18, 1987) - initial release
  986.