home *** CD-ROM | disk | FTP | other *** search
/ Fresh Fish 5 / FreshFish_July-August1994.bin / bbs / dev / struct-1.0.lha / Struct-1.0 / History < prev    next >
Encoding:
Text File  |  1994-03-14  |  4.3 KB  |  93 lines

  1. Aug 30 1993: Struct 0.95 released to beta testers.
  2.  
  3. Sep 18 1993: Made Zeroloop work properly with LONG variables. The
  4. way to do this was explained by Joakim Rosqvist.
  5.  
  6. Jan 03 1994: The Lib Call command originally had two limitations:
  7. you couldn't use math expressions as parameters and it didn't
  8. automatically sign-extend parameters to LONG for you. The former was
  9. caused by a lack of scratch registers. The latter was just dumb.
  10. Making library calls under these limitations proved unbearable, and
  11. so they were removed. Struct now uses 12 bytes of stack space as
  12. scratch during a library call if you supply a parameter list.
  13.  
  14. Jan 06 1994: Allowed procedures to return a value. This would have
  15. been done a long time ago, but I couldn't decide how it should
  16. appear to the programmer.
  17.  
  18. Jan 12 1994: Made the Load Address command more powerful. It can now
  19. load the addresses of labels, procedures, and variables. In order to
  20. make this work, compiler output is now directed to two separate
  21. files which are combined at the end of processing. The AmigaDOS Join
  22. command must be in your C: directory (the compiler will use it
  23. automatically). This modification effectively makes Struct a
  24. "1 & 1/2 pass" compiler.
  25.   The compiler now distinguishes between local and global labels.
  26.  
  27. Jan 15 1994: Added the ability to recognize the IFND directive to
  28. the Include Constant command. This seems to make it work properly
  29. with the include files I have. It's real slow though.
  30.   Made the Goto command use the double output file system. Forward
  31. Gotos no longer require a resolution subroutine at the end of the
  32. procedure.
  33.  
  34. Jan 21 1994: No more annoying warnings from the Print command.
  35.  
  36. Jan 22 1994: Variables can now be given an initial value.
  37.  
  38. Jan 25 1994: Procedures can now have "default parameters" for each
  39. of their input variables. The default parameter will be used if no
  40. value is passed to that variable. This permits a limited form of
  41. function overloading.
  42.   STACK data type added. This is EXPERIMENTAL and may be removed
  43. from the language at a later date. See the Q & A section of the main
  44. documentation for more information.
  45.  
  46. Jan 27 1994: Indenter and UOut example programs updated to make use
  47. of Struct's new features.
  48.   REALLY DUMB bug discovered in the Exit command and eliminated. I
  49. must have been brain-dead the night I wrote the code for that
  50. command.
  51.   L¡brary base tracking fixed. Struct tries to keep track of which
  52. library's base pointer is on A6, but isn't as rigorous as it is with
  53. normal register variables. This was part of the language from the
  54. beginning, but didn't work. It should, now.
  55.  
  56. Jan 29 1994: Library definitions file updated. It now contains the
  57. five major libraries (Exec, Dos, Graphics, Layers, and Intuition) up
  58. to version 1.2. My references are not the most complete, so there
  59. may be some functions missing. It would be nice if some kind soul
  60. could send me the function information for 2.0+...
  61.  
  62. Jan 30 1994: Increased the compiler's working buffer size and raised
  63. some of its internal limits. See the Theoretical Limits appendix for
  64. specifics. Struct now requires approximately 600k to compile a
  65. program.
  66.  
  67. Jan 31 1994: Documentation for the Indenter example program written.
  68.  
  69. Feb 02 1994: Documentation for the UOut example program written.
  70.  
  71. Feb 13 1994: Struct main documentation updated to reflect recent
  72. changes. New chapter added on optimization.
  73.   Struct 0.99 released to beta testers.
  74.  
  75. Feb 21 1994: Any constants which end with "@" will now be ignored by
  76. Include Constant if they're already defined. (The "@" sign indicates
  77. a redefinable constant in assembly)
  78.   Library bases are now stored in global variables which are
  79. directly accessible to the programmer.
  80.   Various bugs fixed - local and global labels with the same name
  81. weren't being allowed, forward Gotos were bringing up false errors
  82. in some situations, constants weren't always working with the Poke
  83. and Peek set of commands.
  84.  
  85. Mar 14 1994: Despite my efforts to fix the Include Constant command,
  86. one of my beta testers still has problems with it. If you can't get
  87. this command to work, and you only need a few magic numbers, you
  88. might try finding out the values of those numbers and then just
  89. inlining them with the Constant command.
  90.   Struct 1.0 released to the public. My great thanks to those beta
  91. testers who sent advice and comments during the testing process:
  92. David Benn, Sean Conner, and Joakim Rosqvist.
  93.