mirror of
https://github.com/tgrysztar/fasm
synced 2026-08-26 00:23:06 -04:00
release 1.73.29
This commit is contained in:
parent
9a56621e1b
commit
272706a876
3 changed files with 11 additions and 3 deletions
|
|
@ -135,8 +135,11 @@ convert_number:
|
|||
subexpression_closed:
|
||||
ret
|
||||
symbol_value:
|
||||
cmp [source_start],0
|
||||
je preprocessor_value
|
||||
mov eax,[source_start]
|
||||
test eax,eax
|
||||
jz preprocessor_value
|
||||
cmp eax,-1
|
||||
je invalid_value
|
||||
push edi esi
|
||||
lods word [esi]
|
||||
cmp al,1Ah
|
||||
|
|
|
|||
|
|
@ -33,7 +33,7 @@
|
|||
; cannot simply be copied and put under another distribution licence
|
||||
; (including the GNU Public Licence).
|
||||
|
||||
VERSION_STRING equ "1.73.28"
|
||||
VERSION_STRING equ "1.73.29"
|
||||
|
||||
VERSION_MAJOR = 1
|
||||
VERSION_MINOR = 73
|
||||
|
|
|
|||
|
|
@ -2,6 +2,11 @@
|
|||
Visit http://flatassembler.net/ for more information.
|
||||
|
||||
|
||||
version 1.73.29 (Dec 18, 2021)
|
||||
|
||||
[-] Corrected an issue in external use of expression calculator.
|
||||
|
||||
|
||||
version 1.73.28 (Sep 16, 2021)
|
||||
|
||||
[+] Added special preprocessing of symbols "__file__" and "__line__"
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue