-------------------------------------------------------------------------------
*  RELEASE 5.20 BUGLIST                                                       *
*  Update - 12/17/90                                                          *
*  This file contains a list of bugs in the release 5.20 of the 320C1x/2x     *
*  code generation tools.                                                     *
*  All bugs will be fixed in the next production release unless otherwise     *
*  indicated.  There will sometimes be references to internal versions in     *
*  this list.  For that reason you must always refer to the release status    *
*  information (published every two weeks) to verify the availability of a    *
*  specific revision.                                                         *
-------------------------------------------------------------------------------
SIMULATOR
-------------------------------------------------------------------------------
3420   V2.10   will fix
The instructions BBNZ and BBZ are not reverse assembled

COMPILER
-------------------------------------------------------------------------------
ASSEMBLER
-------------------------------------------------------------------------------
3660   V6.00   will fix
The ".mlib " macro library directive does not work properly in the assembler.

     Workaround : Put macros onto single file and use
                  ".include" directiv

3676   V6.00   will fix
The assembler incorrectly processes structures declared with the ".struct"
directive when the variable is defined in a file other than the file where
it is accessed.

        e.g.      testRec: .struct
                  var1:    .word
                  var2:    .word
                  testLen: .endstruct

                           .bss    test1, testLen
                  test1    .tag    testRec

                           .ref    test2
                  test2    .tag    testRec

                           .text
     0000 1001-            LACC  test1.var2 ; Offset 1, OK
     0001 1000!            LACC  test2.var2 ; Offset 0!!!
     0002 1001!            LACC  test2+testRec.var2 ;1,OK

      !!!! The offsets for tes1.var2 and test2.var2 should be the same

TUTOR
-------------------------------------------------------------------------------
3675   V6.00   will fix
The file TUTOR.DOC contains 2 copies of the same text

LINKER
-------------------------------------------------------------------------------
3691   V6.00   will fix
The "dsplnk" command does not return the correct error exit code when
there is a syntax error or when undefined symbols occur in the link.

  $SEVERITY == "1"              should equal
-------------------------------------------------------------------------------
