release 1.71.48

This commit is contained in:
Tomasz Grysztar 2015-11-18 12:00:00 +00:00
parent eea8a90b8c
commit bde72d6448
3 changed files with 8 additions and 2 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.71.47"
VERSION_STRING equ "1.71.48"
VERSION_MAJOR = 1
VERSION_MINOR = 71

View file

@ -882,7 +882,7 @@ mov_instruction:
lods byte [esi]
mov ah,al
shr ah,4
cmp al,4
cmp ah,4
ja invalid_operand
add ah,22h
mov [extended_code],ah

View file

@ -2,6 +2,12 @@
Visit http://flatassembler.net/ for more information.
version 1.71.48 (Nov 18, 2015)
[-] Fixed recently introduced bug in MOV instruction with debug register
as target.
version 1.71.47 (Nov 09, 2015)
[+] Added support for Intel MPX instructions.