Subversion Repositories Kolibri OS

Rev

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

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