release 1.73.14

This commit is contained in:
Tomasz Grysztar 2019-07-30 16:47:52 +02:00
parent 2735fa1f06
commit c21745309c
4 changed files with 14 additions and 1 deletions

View file

@ -1310,6 +1310,8 @@ instructions_5:
dw rdpid_instruction-instruction_handler
db 'rdpmc',33h
dw simple_extended_instruction-instruction_handler
db 'rdpru',0FDh
dw simple_instruction_0f_01-instruction_handler
db 'rdtsc',31h
dw simple_extended_instruction-instruction_handler
db 'repne',0F2h
@ -3001,6 +3003,8 @@ instructions_8:
dw avx_comiss_instruction-instruction_handler
db 'vzeroall',77h
dw vzeroall_instruction-instruction_handler
db 'wbnoinvd',9
dw simple_extended_instruction_f3-instruction_handler
db 'wrfsbase',2
dw rdfsbase_instruction-instruction_handler
db 'wrgsbase',3

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.13"
VERSION_STRING equ "1.73.14"
VERSION_MAJOR = 1
VERSION_MINOR = 73

View file

@ -54,6 +54,10 @@ simple_extended_instruction:
mov al,0Fh
stos word [edi]
jmp instruction_assembled
simple_extended_instruction_f3:
mov byte [edi],0F3h
inc edi
jmp simple_extended_instruction
prefix_instruction:
stos byte [edi]
or [prefix_flags],1

View file

@ -2,6 +2,11 @@
Visit http://flatassembler.net/ for more information.
version 1.73.14 (July 40, 2019)
[-] Added "rdpru" and "wbnoinvd" instructions.
version 1.73.13 (July 14, 2019)
[-] Corrections in 64-bit Linux interface.