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