Subversion Repositories Kolibri OS

Rev

Rev 1053 | Blame | Last modification | View Log | Download | RSS feed

  1.  
  2. Visit http://flatassembler.net/ for more information.
  3.  
  4.  
  5. version 1.68 (Jun 13, 2009)
  6.  
  7. [+] Added SSSE3 (Supplemental SSE3), SSE4.1, SSE4.2 and SSE4a instructions.
  8.  
  9. [+] Added the AMD SVM and Intel SMX instructions.
  10.  
  11. [+] Added "rdmsrq", "wrmsrq", "sysexitq" and "sysretq" mnemonics for the
  12.     64-bit variants of respective instructions.
  13.  
  14. [+] Added "fstenvw", "fstenvd", "fsavew", "fsaved", "frstorw" and "frstord"
  15.     mnemonics to allow choosing between 16-bit and 32-bit variants of
  16.     structures used by the "fstenv", "fsave" and "frstor" instructions.
  17.  
  18. [+] Added "plt" operator for the ELF output format.
  19.  
  20. [+] Allowed "rva" operator to be used in MS COFF object format, and also
  21.     added "static" keyword for the "public" directive.
  22.  
  23. [+] Added Intel-style aliases for the additional long mode 8-bit registers.
  24.  
  25. [-] The PE formatter now automatically detects whether relocatable labels
  26.     should be used, depending on whether the fixups directory is placed
  27.     somewhere into executable by programer, or not. This makes possible the
  28.     more flexible use of the addressing symbols in case of PE executable fixed
  29.     at some position.
  30.  
  31. [-] Added support for outputting the 32-bit address relocations in case of
  32.     64-bit object formats and PE executable. This makes some specific
  33.     instructions compilable, but it also forces linker to put such
  34.     generated code into the low 2 gigabytes of addressing space.
  35.  
  36. [+] Added "EFI", "EFIboot" and "EFIruntime" subsystem keywords for PE format.
  37.  
  38. [-] Corrected the precedence of operators of macroinstruction line maker.
  39.     The symbol escaping now has always the higher priority than symbol conversion,
  40.     and both have higher precedence than concatenation.
  41.  
  42. [+] Allowed to check "@b" and "@f" symbols with "defined" operator.
  43.  
  44. [+] Allowed "as" operator to specify the output file extension when
  45.     placed at the end of the "format" directive line.
  46.  
  47. [-] Definition of macro with the same name as one of the preprocessor's directives
  48.     is no longer allowed.
  49.  
  50. [+] Allowed single quote character to be put inside the number value,
  51.     to help improve long numbers readability.
  52.  
  53. [+] Added optional symbolic information output, and a set of tools that extract
  54.     various kinds of information from it.
  55.  
  56. [+] Added "err" directive that allows to signalize error from the source.
  57.  
  58.  
  59. version 1.66 (May 7, 2006)
  60.  
  61. [+] Added "define" directive to preprocessor, which defines symbolic constants,
  62.     the same kind as "equ" directive, however there's an important difference
  63.     that "define" doesn't process symbolic constants in the value before
  64.     assigning it. For example:
  65.  
  66.         a equ 1
  67.         a equ a+a
  68.  
  69.         define b 1
  70.         define b b+b
  71.  
  72.     defines the "a" constant with value "1+1", but the "b" is defined with
  73.     value "b+b". This directive may be useful in some advanced
  74.     macroinstructions.
  75.  
  76. [-] Moved part of the conditional expression processing into parser,
  77.     for slightly better performance and lesser memory usage by assembler.
  78.     The logical values defined with "eq", "eqtype" and "in" operators are now
  79.     evaluated by the parser and if they are enough to determine the condition,
  80.     the whole block is processed accordingly. Thus this block:
  81.  
  82.         if eax eq EAX | 0/0
  83.                 nop
  84.         end if
  85.  
  86.     is parsed into just "nop" instruction, since parser is able to determine
  87.     that the condition is true, even though one of the logical values makes no
  88.     sense - but since this is none of the "eq", "eqtype" and "in" expressions,
  89.     the parser doesn't investigate.
  90.  
  91. [-] Also the assembler is now calculating only as many logical values as it
  92.     needs to determine the condition. So this block:
  93.  
  94.         if defined alpha & alpha
  95.  
  96.         end if
  97.  
  98.     will not cause error when "alpha" is not defined, as it would with previous
  99.     versions. This is because after checking that "defined alpha" is false
  100.     condition it doesn't need to know the second logical value to determine the
  101.     value of conjunction.
  102.  
  103. [+] Added "short" keyword for specifying jump type, the "jmp byte" form is now
  104.     obsolete and no longer correct - use "jmp short" instead.
  105.  
  106. [-] The size operator applied to jump no longer applies to the size of relative
  107.     displacement - now it applies to the size of target address.
  108.  
  109. [-] The "ret" instruction with 0 parameter is now assembled into short form,
  110.     unless you force using the 16-bit immediate with "word" operator.
  111.  
  112. [+] Added missing extended registers for the 32-bit addressing in long mode.
  113.  
  114. [+] Added "linkremove" and "linkinfo" section flags for MS COFF output.
  115.  
  116. [+] Added support for GOT offsets in ELF object formatter, which can be useful
  117.     when making position-independent code for shared libraries. For any label
  118.     you can get its offset relative to GOT by preceding it with "rva" operator
  119.     (the same keyword as for PE format is used, to avoid adding a new one,
  120.     while this one has very similar meaning).
  121.  
  122. [-] Changed ELF executable to use "segment" directive in place of "section",
  123.     to make the distinction between the run-time segments and linkable
  124.     sections. If you had a "section" directive in your ELF executables and they
  125.     no longer assemble, replace it with "segment".
  126.  
  127. [-] The PE formatter now always creates the fixups directory when told to -
  128.     even when there are no fixups to be put there (in such case it creates the
  129.     directory with one empty block).
  130.  
  131. [-] Some of the internal structures have been extended to provide the
  132.     possibility of making extensive symbol dumps.
  133.  
  134. [-] Corrected "fix" directive to keep the value intact before assigning it to the
  135.     prioritized constant.
  136.  
  137. [+] The ` operator now works with any kind of symbol; when used with quoted
  138.     string it simply does nothing. Thus the sequence of ` operators applied to
  139.     one symbol work the same as if there was just one. In similar manner, the
  140.     sequence of # operators now works as if it was a single one - using such a
  141.     sequence instead of escaping, which was kept for some backward
  142.     compatibility, is now deprecated.
  143.  
  144. [-] Corrected order of identifying assembler directives ("if db eq db" was
  145.     incorrectly interpreted as data definition).
  146.  
  147. [-] Many other small bugs fixed.
  148.  
  149.  
  150. version 1.64 (Aug 8, 2005)
  151.  
  152. [+] Output of PE executables for Win64 architecture (with "format PE64"
  153.     setting).
  154.  
  155. [+] Added "while" and "break" directives.
  156.  
  157. [+] Added "irp" and "irps" directives.
  158.  
  159. [+] The macro arguments can be marked as required with the "*" character.
  160.  
  161. [-] Fixed checking for overflow when multiplying 64-bit values - the result
  162.     must always fit in the range of signed 64 integer now.
  163.  
  164. [-] Segment prefixes were generated incorrectly in 16-bit mode when BP was used
  165.     as a second addressing register - fixed.
  166.  
  167. [-] The "local" directive was not creating unique labels in some cases - fixed.
  168.  
  169. [-] The "not encodable with long immediate" error in 64-bit mode was sometimes
  170.     wrongly signaled - fixed.
  171.  
  172. [-] Other minor fixes and corrections.
  173.  
  174.  
  175. version 1.62 (Jun 14, 2005)
  176.  
  177. [+] Escaping of symbols inside macroinstructions with backslash.
  178.  
  179. [+] Ability of outputting the COFF object files for Win64 architecture
  180.     (with "format MS64 COFF" setting).
  181.  
  182. [+] New preprocessor directives: "restruc", "rept" and "match"
  183.  
  184. [+] VMX instructions support (not documented).
  185.  
  186. [+] Extended data directives to allow use of the "dup" operator.
  187.  
  188. [+] Extended "struc" features to allow custom definitions of main structure's
  189.     label.
  190.  
  191. [-] When building resources from the the .RES file that contained more
  192.     than one resource of the same string name, the separate resource
  193.     directories were created with the same names - fixed.
  194.  
  195. [-] Several bugs in the ELF64 object output has been fixed.
  196.  
  197. [-] Corrected behavior of "fix" directive to more straightforward.
  198.  
  199. [-] Fixed bug in "include" directive, which caused files included from within
  200.     macros to be processed the wrong way.
  201.