Subversion Repositories Kolibri OS

Rev

Rev 1189 | Go to most recent revision | Blame | Last modification | View Log | Download | RSS feed

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