release 1.73.12

This commit is contained in:
Tomasz Grysztar 2019-05-19 20:39:12 +02:00
parent 0ac5b23319
commit 3f081fa4df
3 changed files with 8 additions and 1 deletions

View file

@ -33,7 +33,7 @@
; cannot simply be copied and put under another distribution licence
; (including the GNU Public Licence).
VERSION_STRING equ "1.73.11"
VERSION_STRING equ "1.73.12"
VERSION_MAJOR = 1
VERSION_MINOR = 73

View file

@ -2188,6 +2188,8 @@ movx_instruction:
call operand_autodetect
jmp instruction_ready
movx_unknown_size:
cmp al,2
je movx_mem_store
call recoverable_unknown_size
jmp movx_mem_store
movx_reg:

View file

@ -2,6 +2,11 @@
Visit http://flatassembler.net/ for more information.
version 1.73.12 (May 19, 2019)
[-] Implied memory size allowed for 16-bit "movzx"/"movsx".
version 1.73.11 (Apr 19, 2019)
[+] Added "definite" operator.