home *** CD-ROM | disk | FTP | other *** search
/ Club Amiga de Montreal - CAM / CAM_CD_1.iso / files / 567a.lha / DICE_v2.06.37 / version.doc.pp / version.doc
Encoding:
Text File  |  1991-11-11  |  21.4 KB  |  570 lines

  1.  
  2.                    VERSION.DOC
  3.                   DICE
  4.  
  5. VERS DES COMMENT
  6.     VERS    = Release Version
  7.     DES     = bug fixed / feature designator
  8.     XB  - major bug fixed in main compiler
  9.           (use of routine in question could have caused a crash)
  10.     B   - minor bug fixed in main compiler
  11.     F   - feature added
  12.     E   - enhancement to existing feature
  13.     O   - optimization added
  14.  
  15.     ADD - feature added or fixed that is standard C but was not previously
  16.           implemented or working.
  17.  
  18.     XBL - major bug fixed to library
  19.     BL  - minor bug fixed to library
  20.     FL  - feature added to library
  21.     OL  - optimization added to library
  22.  
  23.     XBA - major bug fixed in support program (i.e. not DCC or sub programs)
  24.     BA  - minor bug fixed in support program
  25.     FA  - feature added to support program (or new support program)
  26.     OA  - optimization added to support program
  27.  
  28.     COMMENT = comment or bug, feature
  29.  
  30. 2.06.37
  31.     B    arrays are now aligned the same as their element type
  32.     alignment.  Thus, char a[3]; is byte aligned while short a[3];
  33.     is word aligned. Previously arrays were always word aligned.
  34.     (not really a bug, but required to work with Amiga cia structures)
  35.  
  36.     F    PROFILING ADDED.  New -prof option to DCC, LIBMAKE, and FDTOLIB.
  37.     This tool gives you unmatched profiling capabilities.  You may
  38.     profile just your source, standard C calls, amiga library calls,
  39.     or any combination.  A <programname>.dprof file is automatically
  40.     generated when your program exits and may be turned into a
  41.     textual representation    with the DPROF program.
  42.  
  43.     Profiling routines have a 1 uS granularity under 2.0, 20 mS
  44.     granularity under 1.3.
  45.  
  46.     __noprof qualifier for procedures added -- prevents a procedure
  47.     from being profiled (used by the system to prevent the profiler
  48.     routine from getting profiled itself)
  49.  
  50.     F    C.LIB renamed to CS.LIB to generalize library names.  Infix IDs
  51.     are now generalized as follows:
  52.  
  53.     L   large data model
  54.     S   small data model
  55.     R   registered args, else stack args (registered release only)
  56.     P   profiled, else not profiled.
  57.  
  58.     DCC will now use the -prof and -md/-mD options to determine which
  59.     c.lib and amiga.lib to use.  The more useful combinations are
  60.     included in the distribution and registered users may make
  61.     additional versions as needed.
  62.  
  63.     Note that you may mix options -- it is perfectly valid to compile
  64.     source modules with -mD but link small-data.
  65.  
  66.     BL    bug in fread() fixed relating to an fread() occuring after an
  67.     ungetc().
  68.  
  69.     E    ALL LIBRARIES IN THE SYSTEM REORGANIZED.  There are now many
  70.     more libraries.  Registered users now have a means of remaking
  71.     *ANY* library from scratch by unpacking the library source code
  72.     and typeing 'dmake' with no arguments for instructions. Generally
  73.     only the DTMP: assignment and -2.0 in your DCCOPTS is required.
  74.  
  75.     Since there are many more libraries possible then I can fit in the
  76.     distribution, this means may be used to create esoteric libraries
  77.     that the majority of people will never use.
  78.  
  79.     F    Fixed two major bugs with constant floating point arithmatic...
  80.     addition and subtraction would not work correctly in a few cases
  81.     (it would get the sign wrong), the exponent would get screwed up
  82.     in some cases (usually after a negation), and I was overflowing
  83.     the single-precision exponent range for conversions to type float.
  84.  
  85.     Ooooo this stuff should have been caught long ago!
  86.  
  87.     F    Fixed a pointer arithmatic bug, yet another case where a scratch
  88.     register would get overwritten due to a procedure call.
  89.  
  90. 2.06.36
  91.     B    register allocation bug fixed, related to floating point
  92.     routines mainly.  Would generate a 'Too many redos' error
  93.     in some cases (bug did not generate bad code).
  94.  
  95.     F    PRECOMPILED INCLUDES ADDED, see -H option in DOC/DCC.DOC.
  96.  
  97.  
  98. 2.06.35
  99.     FL    under 2.0 (V37), getenv() now checks for local enviroment variables
  100.     before global ENV: variables.  Under 1.3 only global ENV: variables
  101.     are checked for.
  102.  
  103.     BL    fixed %U and %W in strftime(), would generate incorrect week-of-year
  104.  
  105.     B    fixed stringize operator for \n, i.e. quoteme(fubar\n) -> "fubar\n",
  106.     would previously generate incorrect result (I think)
  107.  
  108.     B    fixed bugs in integer multiply & divide, some cases would generate
  109.     fatal errors (all caught by DICE)
  110.  
  111.     B    fixed bug &= operator, would generate assembly error in
  112.     conditional:    while (x &= (x - 1)) ...
  113.  
  114.     F    optimizations made to mulitply & divide, handles 16 bit expressions
  115.     better.
  116.  
  117.     F    minor optimization added for procedure calls within the same
  118.     module.  If call is within a byte offset then BSR.B will be
  119.     used, else BSR.W is used.
  120.  
  121.     F    DLink now checks for illegal small-data references to far objects
  122.     and generates the appropriate error message.  This was added for
  123.     completeness and also because __far or -mD data objects are no
  124.     longer A4-relative.  The check will catch illegal model mixing.
  125.  
  126. 2.06.34
  127.     BL    bug in <varargs.h> (old style var-args) fixed, was skipping first
  128.     argument.  Note that all ANSI projects should use <stdarg.h>
  129.  
  130. 2.06.33
  131.     B    bug in offsetof(type, array_elm) fixed, previously caused error
  132.     message.
  133.  
  134. 2.06.32
  135.     B    fixed bug in dlink Introduced in .31 that would cause a machine
  136.     crash.
  137.  
  138.  
  139. 2.06.31
  140.     B    fixed floating point bug relating to array indexing, would
  141.     clobber A0 in some cases
  142.  
  143.     B    fixed preprocessor bug relating to the use of hex constants
  144.     in #if expressions (they wouldn't work)
  145.  
  146.     E    redid the handling of the ?: routine to allocate its result
  147.     storage (a temporary register) after running the sub-expressions
  148.     instead of before, which allows you to nest ?: indefinitely without
  149.     generating an too-many-redos error.
  150.  
  151.     B    register allocation bug (would generate fatal error) in
  152.     &array (redundant & operator) has been fixed.
  153.  
  154.     B    DCPP now accepts null directives.  # with no directive.
  155.  
  156. 2.06.30
  157.  
  158.     F    DCPP now evaluates undefined symbols in #if expressions as 0
  159.     instead of generating an error message, as per ANSI.
  160.  
  161.     B    Yet another bug in the # (stringtize) operator found.  Fixed.
  162.     Really really really should work right this time!
  163.  
  164.     B    bug in switch/case fixed, case <enumid>: would generate an
  165.     error message.
  166.  
  167.     BA    I was shipping the wrong mathieeedoub*.library shared libraries,
  168.     would cause erronous float->double conversion.
  169.  
  170.     B    another floating point bug found in && and || of the
  171.     form 'fp && fp' or 'fp || fp', would cause incorrect
  172.     evaluation and/or assembly error
  173.  
  174.     B    small bug in fread() would sometimes set error flag
  175.     when returning EOF, and fseek() would not reset this
  176.     flag (it does now).
  177.  
  178.     BL    bug in *scanf(), %c would overwrite the char by one byte
  179.     (i.e. store into two chars instead of one).  fixed.
  180.  
  181.     B    DCPP didn't handle a quoted /* in directives correctly.
  182.  
  183.     F    Large programs that have more than 64K of *initialized* data
  184.     may now use either __far for selected items (preferable) or -mD
  185.     without causing link errors.  Previously dlink would combine far
  186.     data along with near data making all small-data referenced bss
  187.     items out of range if more than 64K of initialized data had been
  188.     declared, __far or not.  Now, DC1 generates 'fardata' sections
  189.     properly when -mD or __far is used (previously only worked with
  190.     __far), and dlink will not combine any section name beginning with
  191.     'far' into the small data model.
  192.  
  193.     This is only of major import when compiling incredibly huge
  194.     programs.  Note that having greater than 64K of bss with -mD or
  195.     __Far has always been supported since library bss is always forced
  196.     in front of program bss.
  197.  
  198.     F    DLink now takes approximately 15% less memory.    While it still
  199.     requires memory to hold the combined size of all objects and
  200.     libraries, incidental memory requirements now reuse much of this
  201.     memory from unlinked sections instead of allocate new memory.
  202.  
  203. 2.06.29
  204.     B    another long standing bug found: short a = i * j; where i and j
  205.     are long's and *also* a memory reference (not in regs),
  206.     the multiplication short-result optimization was screwed up.
  207.  
  208.     B    register allocation bug (would produce a fatal error) fixed,
  209.     registers would not be deallocated in constant conditional
  210.     expressions such as:    1 ? (a = 4) : b;
  211.  
  212. 2.06.28
  213.     B    really dumb bug fixed, made retroactive to 2.06.27 (all 2.06.27
  214.     dists were redone with this fixed).  Had been introduced in 2.06.27
  215.  
  216. 2.06.27
  217.     E    add -// option to DCC and DCPP, enables C++ style // comments.
  218.     If not specified, // style comments are ignored.  Generally
  219.     one puts -// in DCCOPTS.
  220.  
  221.     E    added -no-env option for DCC.  If specified, DCC will *not*
  222.     load options from DCCOPTS.
  223.  
  224.     B    fixed bug:  static int fio(), fio();  (procedure declared twice
  225.     on same line) would force procedure to be non-static.
  226.  
  227.     fixed bug:  __geta4 int fio(), bar(); ... __geta4 would apply
  228.     only to first procedure.
  229.  
  230.     B    fixed bug w/ labels ...  label: case ...  would generate error
  231.     message (case or default following directly after label).  Was
  232.     introduced when I initially fixed labels.
  233.  
  234.     E    AUTO-AGGREGATE INITIALIZATION ADDED, e.g.
  235.     main() { int a[] = { 1, 2, 3 }; ... }.
  236.  
  237.     static & global initialization has been re-vamped.  Note that
  238.     bit-field aggregate initialization is NOT supported yet.
  239.  
  240.     B    Fixed bug that has been in there from the beginning.
  241.     int *a; a[20000] = 1; ... would not multiply the constant by 4 to
  242.     get the index.    ONLY EFFECTED CONSTANT INDEXES WHOS OFFSET WOULD BE
  243.     LARGER THAN A SIGNED SHORT, which is why it was not caught.
  244.  
  245.     B    Fixed bug in float point stack allocation... temporary fp variables
  246.     from the previous procedure would not properly be cleared from the
  247.     cache, causing erronous stack offsets (that overlap other variables)
  248.     in the next procedure.
  249.  
  250.     E    Added ANSI 'U' extension for constants, e.g. 123U.  DICE now
  251.     automatically promotes a constant to unsigned if it does not fit in
  252.     a signed long, such as 4000000000.  Note, however, the int->float
  253.     conversion is currently always signed due to lack of
  254.     unsigned->float calls in the amiga's shared fp libraries.
  255.  
  256.     B    small bug in fread(), would not set the EOF flag when an EOF
  257.     occurs for an fread() requesting a buffer size larger than the
  258.     stdio buffer size.
  259.  
  260.     B    when making a registered-args call (-mr, -mR, -mRR) where a
  261.     pointer - int subtraction occurs, i.e. foo(ptr - int, int),
  262.     arguments after the argument containing the ptr - int would
  263.     be incorrect (registers would get squashed).  ONLY applies
  264.     to registered-args calls.  This has been fixed!
  265.  
  266.     B    bug in preprocessor fixed, #define fubar(x) "a x a" would replace
  267.     the 'x' in the string, which is wrong.
  268.  
  269.     B    bug with bitfields has been found and fixed.  Essentially, bitfield
  270.     operations in routines that need to run a retry pass can get
  271.     munged.  This is usually caused by routines that declare lots of
  272.     local variables.
  273.  
  274. 2.06.26
  275.     B    Fixed bug in floating pt compare of the form:  x = (f1 == f2);
  276.     i.e. a compare where the result is a boolean 0/1 when not in
  277.     a conditional.    Was caught by DICE (caused a fatal error).
  278.  
  279.     B    Fixed bug w/ bitfields (was caught by DICE), would give fatal
  280.     error if destination was not a register for field extraction.
  281.  
  282.     B    fixed bugs with stringtize operator in macros, should now work
  283.     according to the ANSI spec.
  284.  
  285.     #define fubar(x) #x
  286.  
  287.     BL    month was off by one for %m operator in strftime()
  288.  
  289.      E    PROCEDURES MAY NOW RETURN STRUCTURES.  YOU MUST PROTOTYPE ALL SUCH
  290.     PROCEDURES.
  291.  
  292.      E    added // comments to DCPP (C++ style comments)
  293.  
  294. 2.06.25
  295.     E    doc/errors.doc now exists, error handling centralized.
  296.  
  297.     E    a printer driver and exec device driver example has been added to
  298.     examples/ ... so now I have a shared library example, dos device
  299.     driver example, EXEC device driver and printer driver example.
  300.  
  301. 2.06.24
  302.     B    stack allocation changes in 2.06.23 were broken, broke floating point.
  303.     (got the stack tracking mixed up w/ variable allocation)
  304.  
  305.     B    ?: fix in 2.06.23 was broken (sigh), fixed ... 'default:' would
  306.     not be properly tokenized.
  307.  
  308.     E    *scanf() now supports %e/E/f/g/G and %[..]
  309.  
  310. 2.06.23 BETA
  311.     B    goto labels are now in their own name space, no more conflicts
  312.     with  int a; ... goto a; ... a: ...
  313.  
  314.     F    added stack tracking for fp temporaries, meaning that subroutines
  315.     containing floating point expressions do not take up anywhere near
  316.     the amount of stack they used to.
  317.  
  318.     F    allows declarations after switch() { and before first case.
  319.  
  320.     F    fixed problem with  ... ? symbol : ...    (symbol was being
  321.     interpreted as a label instead of a variable within a ?:
  322.     conditional
  323.  
  324.     F    fixed problems with conditional returns from fp operations,
  325.     such as:    double a, b; int c = (a < b);  that must
  326.     generate a 0/1 result instead of a branch (as in an if()).
  327.     Would generate error before.
  328.  
  329. 2.06.22
  330.     B    fixed problem with GOTO labels, a goto label semantically is
  331.     not a statement unto itself.  The problem is a line like the
  332.     below:
  333.  
  334.         if (i) j = 1; else x: j = 2;
  335.  
  336.     Currently j = 2; is completely outside the if in DICE.    This
  337.     is incorrect,  'x: j = 2;' counts as a single statement.
  338.  
  339.     E    libmake is now documented, it wasn't before!  New options have
  340.     been added to libmake and fdtolib.  For libmake, DCC's -D
  341.     option has been added.    For fdtolib, a new -p option is specifiable
  342.     to set the prefix used on exported symbols (to support creation
  343.     of dynamic.library compatible object modules)
  344.  
  345.     B    fixed bug in string constant array initialization,
  346.     char x[1] = "a";  previously generated an error
  347.  
  348.     B    fixed infinite ERROR printing loop
  349.  
  350.     F    revamped constant-address handling (i.e. when you map a
  351.     complex structure over IO space at a known address, useful when
  352.     generating ROM'd apps for 68000 based uP's.
  353.  
  354.     F    dynamic.library & support routines now part of the distribution.
  355.  
  356. 2.06.21
  357.     E    fixed register reallocation, should now do a better job
  358.     allocating registers in complex subroutines.  Hopefully squashed
  359.     'maximum retries exceeded' error for all but the most incredibly
  360.     complex expressions.
  361.  
  362.     B    fixed bug in int->float conversion, expressions such as:
  363.         double x = (double)(a * b);
  364.  
  365.     E    fixed somestuff that generated an infinite WARN loop.
  366.  
  367.     F    DCC now creates the destination directory heirarchy if it does
  368.     not exist.  For example, when you DCC com/x.c the object file
  369.     will be T:com/x.o, with T:com created if necessary.
  370.  
  371.     F    DYNAMIC FUNCTION/VAR LIBARARY SUPPORT ADDED, see __dynamic
  372.     explanation in DYNAMIC.DOC .
  373.  
  374.     F    DCPP now accepts -Ddefine(vars..)=definition, it used to be
  375.     able to only accept -Ddefine=value
  376.  
  377. 2.06.20
  378.     F    TimerBase, for timer.device library calls, now has auto-open
  379.     capability, meaning that you can simply call AddTime(), CmpTime(),
  380.     SubTime(), and the new 2.0 calls (GetSysTime() & ReadEClock())
  381.     without having to open the timer.device and set up TimerBase
  382.     yourself.
  383.  
  384.     B    bug in if (ptr & 1) and similar constructs doing a logical and
  385.     in a compare against a pointer rather than an int produced
  386.     bad code caught by DAS.
  387.  
  388.     B    x.o was in c.lib, this is wrong... x.o must be the LAST file in
  389.     any link and is included automatically by DCC when it runs DLINK.
  390.  
  391.     F    additional example code in DCC2:examples -- a DOS handler and
  392.     a shared library.
  393.  
  394. 2.06.19
  395.     B    bug in dynamic stack code under 1.3 fixed
  396.     B    bug in workbench startup under 1.3 fixed
  397.     B    bug in register allocation fixed (would cause fatal error
  398.     message 'too many retries' sometimes when procedure args
  399.     declared as arrays instead of pointers)
  400.  
  401. 2.06.18
  402.     F    several more libraries have auto-open capability
  403.  
  404.     B    bug in DLINK fixed -- would GURU on large links due to an error
  405.     in the allocation routines (relocation info larger than 4K would
  406.     cause a GURU)
  407.  
  408. 2.06.17
  409.     F    DCPP now scans DINCLUDE:PD/ for include files.    This is where I
  410.     will be putting .H files for various ports (such as the UNIX
  411.     regexp port).  This was done so as not to clutter the main
  412.     DINCLUDE: and to differentiate between PD files and non-PD
  413.     files.
  414.  
  415.     UNIX compatible .H files are usually placed in DINCLUDE: or
  416.     DINCLUDE:SYS/
  417.  
  418.     F    preprocessor now handles #if defined(symbol) properly (was
  419.     previously not implemented)
  420.  
  421.     F    BITFIELDS now 99% implemented!    including signed/unsigned
  422.     qualifications.  The only thing that does not work is ++bitfield
  423.     and --bitfield.  Single-bit bitfields have been optimized.
  424.     aggregate initialization of bitfields is still wanting.  executable
  425.     actually got smaller when I finally got down and fixed these up.
  426.     No 020/030 support yet.
  427.  
  428.     F    startup code modified to allow writes to desc 0, reads from desc 1,
  429.     etc...    at the file descriptor level but not the stdio level.  This
  430.     is to support some UNIX programs which do this.
  431.  
  432.     BL    bug in [f]putc() fixed -- [f]putc() is supposed to return the put character,
  433.             but did not do so in the case of a new line (putc), or
  434.             at all (fputc).
  435.  
  436.     F    NEW LIBRARY ROUTINESE:    stat(), fstat(), getenv(), opendir(),
  437.     readdir(), closedir(), rewinddir() (see MAN/UNIX.DOC)
  438.  
  439.     F    chdir() now restores the original directory on exit
  440.  
  441.     F    Dynamic Stacking added (-gs option).  Somewhat primitive, but will
  442.     get much better.  This allows subroutines to be as deeply nested as
  443.     required, allocating and deallocating stack frames when low stack
  444.     conditions exist.
  445.  
  446.     F    longjmp()/setjmp() now properly handle dynamic stacks
  447.  
  448.     B    fixed another bug, this one having to do with the index address
  449.     mode (An,Dn.x) combined with a binary operator.
  450.  
  451.     B    fixed bug in FDTOLIB that screwed up register ordering.
  452.  
  453. 2.06.16
  454.     B    fixed EXG bug in DAS, EXG As,Ad would generate Ds,Dd.. screwed
  455.     up registered args (-mRR).
  456.  
  457.     B    fixed bug in *= and /= combined w/ array indexing, things like
  458.     temp[i] /= 23; would use the scratch regs for storage across
  459.     the divide call.
  460.  
  461. 2.06.15
  462.     F    BASIC REGISTERED ARGUMENTS ADDED.  See -mr, -mR, and -mRR options
  463.  
  464.     F    prototype optimization.  If a prototype says a procedure takes a
  465.     short, then DICE pushes a long (as usual).  However, DICE will
  466.     no longer EXT the object before pushing it (upper word is garbage).
  467.     This works because the procedure, having declared the argument a
  468.     short, will only access the lower 16 bits.
  469.  
  470.     B    fixed token pasting bug in dcpp, a ## b ## c now works properly.
  471.  
  472.     F    first registered distribution that includes the 2.0 includes,
  473.     restructuring of 1.3 includes (now called 'amiga13' instead of
  474.     'amiga'), and restructuring of disks to make more space.
  475.  
  476. 2.05.14
  477.     BL    fgets() would overflow the buffer by one character when input lines
  478.     were larger than the buffer size.
  479.  
  480.     B    DCC would complain about output (-o) files ending in .h or .c when
  481.     they do not actually end in .h or .c ..
  482.  
  483. 2.05.13
  484.     B    DCC was supplying only a 2K stack to NON-RESIDENTED sub programs.
  485.     Oops.
  486.  
  487.     F    New floating point support for MATHIEEESING*.LIBRARY ... single
  488.     precision IEEE library.  This is now the default since it is
  489.     more compatible with the double precision IEEE library for
  490.     conversions between single & double precision.
  491.  
  492.     Use the -ffp option to DCC to use the old motorola fast floating
  493.     point single precision library.  Note that the new ieee single
  494.     precision library may not exist on every computer.
  495.  
  496. 2.05.12
  497.     B    another bug with 'const static' items not properly aligning the
  498.     routine they were declared in (when declared within a procedure
  499.     definition).  Fixed.
  500.  
  501.     B    pfmt has a local 64 byte buffer which used to be static.  This is
  502.     illegal for the ROM.LIB version of sprintf() & vsprintf() and so I
  503.     have made this an auto instead.  This fix does not effect Amiga C
  504.     programming though it does mean that [v]sprintf() may now be called
  505.     out of context or multi-threaded without mishap.
  506.  
  507.     F    qsort(), rand(), and srand() have been written.
  508.  
  509.     B    volatile was not being handled proper, 'volatile char *ptr' is
  510.     a pointer to a volatile char, NOT a volatile pointer, for
  511.     example.
  512.  
  513. 2.05.11
  514.     F    new library, ROM.LIB, contains only those routines from C.LIB that
  515.     are completely self contained (reference no static or global data,
  516.     or other routines.  Use only autos if at all).
  517.  
  518.     This library is included instead of C.LIB when the -rom option
  519.     to DCC is used (with the -rom option, amigas*.lib is not included
  520.     either, and it is up to the programmer to specify his own startup
  521.     module)
  522.  
  523.     F    char ary[0] and empty structs return errors, but a direct 'void'
  524.     declaration is allowed.  i.e. 'void x;', useful in some cases.
  525.  
  526.     F    Specifying the 'register' keyword now adds some 'weight' to the
  527.     variable, perhaps giving it more of a chance of becomming a
  528.     register.
  529.  
  530.     B    DCPP was improperly handling token pasting (##), this has been
  531.     fixed.
  532.  
  533.     B    static const objects declared within a procedure not word-aligned
  534.     could cause the procedure code to not be word-aligned, thus
  535.     causing a software error.
  536.  
  537.     F    CONST object handling has been changed.  Before 2.05.11 const
  538.     objects were not put into a CODE hunk unless the -ms or -mS options
  539.     are given to DCC.  2.05.11 and beyond put const qualified objects
  540.     in a code hunk regardless.
  541.  
  542.     F    C.O Modified.  Any program run in the background with RUN will not
  543.     attempt to Open("*",..) to get the stderr channel but instead
  544.     will use the stdout descriptor if it exists.  This allows programs
  545.     to be detached from a CLI (i.e. that you can run a program and
  546.     then close the CLI window without mishap)
  547.  
  548.     F    -020, -030, -881, -882 options formally added (currently -020/-030
  549.     are the same and -881/-882 are the same)
  550.  
  551.     -020: uses EXTB.L   (no major support has been added yet)
  552.  
  553.     B    DSEARCH had a bug... when multiple files are scanned it would miss
  554.     lines in the second file and beyond!
  555.  
  556.     F    oops, const items in the library were not placed in the code
  557.     section.  This effects <ctype.h> ... you must recompile any
  558.     source files that use <ctype.h> macros since the access method
  559.     is now pc-relative instead of data-relative.
  560.  
  561.     The fix is more pertainent to ROMd applications that use <ctype.h>
  562.     ... the lookup tables are no longer copied into RAM for such
  563.     applications.
  564.  
  565. 2.05.10
  566.     F    __config and __shared type qualifiers added
  567.  
  568.     B    --var; generated an internal error
  569.  
  570.