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