mirror of
https://github.com/tgrysztar/fasm
synced 2026-08-26 00:23:06 -04:00
release 1.71.62
This commit is contained in:
parent
4e8d9c9ba9
commit
f07d026736
4 changed files with 14 additions and 1 deletions
|
|
@ -1354,6 +1354,8 @@ kmov_instruction:
|
|||
jmp nomem_instruction_ready
|
||||
kmov_f2_w1:
|
||||
or [rex_prefix],8
|
||||
cmp [code_type],64
|
||||
jne illegal_instruction
|
||||
kmov_f2:
|
||||
mov [opcode_prefix],0F2h
|
||||
jmp nomem_instruction_ready
|
||||
|
|
|
|||
|
|
@ -33,7 +33,7 @@
|
|||
; cannot simply be copied and put under another distribution licence
|
||||
; (including the GNU Public Licence).
|
||||
|
||||
VERSION_STRING equ "1.71.61"
|
||||
VERSION_STRING equ "1.71.62"
|
||||
|
||||
VERSION_MAJOR = 1
|
||||
VERSION_MINOR = 71
|
||||
|
|
|
|||
|
|
@ -6970,6 +6970,10 @@ store_instruction:
|
|||
jnz address_immediate_sib_32bit
|
||||
test ch,not 88h
|
||||
jnz invalid_address_size
|
||||
test edx,80000000h
|
||||
jz address_immediate_sib_store
|
||||
cmp [address_high],0
|
||||
je address_immediate_sib_nosignextend
|
||||
address_immediate_sib_store:
|
||||
call store_instruction_code
|
||||
mov al,100b
|
||||
|
|
|
|||
|
|
@ -2,6 +2,13 @@
|
|||
Visit http://flatassembler.net/ for more information.
|
||||
|
||||
|
||||
version 1.71.62 (May 08, 2017)
|
||||
|
||||
[-] Minor correction in "kmovq" error checking.
|
||||
|
||||
[-] Minor fix in the encoding of some absolute addresses in long mode.
|
||||
|
||||
|
||||
version 1.71.61 (May 04, 2017)
|
||||
|
||||
[-] Minor correction in "vcvtpd2dq" error checking.
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue