release 1.70.01

This commit is contained in:
Tomasz Grysztar 2012-04-30 12:00:00 +00:00
parent ba450b32da
commit b16262e5a8
3 changed files with 11 additions and 4 deletions

View file

@ -134,7 +134,7 @@ convert_number:
symbol_value:
cmp [source_start],0
je preprocessor_value
push edi
push edi esi
lods word [esi]
cmp al,1Ah
jne no_address_register
@ -166,7 +166,7 @@ convert_number:
cmp al,27h
je register_value
no_address_register:
sub esi,2
pop esi
mov edi,directive_operators
call get_operator
pop edi
@ -186,7 +186,7 @@ convert_number:
mov eax,0Fh
jmp store_label_value
register_value:
pop edi
pop edx edi
mov byte [edi-1],10h
stos byte [edi]
ret

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.70"
VERSION_STRING equ "1.70.01"
VERSION_MAJOR = 1
VERSION_MINOR = 70

View file

@ -2,6 +2,13 @@
Visit http://flatassembler.net/ for more information.
version 1.70.01 (Apr 30, 2012)
[-] Corrected a recently introduced bug that caused some incorrect
address expressions to cause an error prematurely during the
parsing stage.
version 1.70 (Apr 17, 2012)
[+] Added support for AVX, AVX2, AES, CLMUL, FMA, RDRAND, FSGSBASE, F16C,