Codebase list fasm / b722ee4
Import upstream version 1.73.29 Debian Janitor 2 years ago
6 changed file(s) with 12 addition(s) and 4 deletion(s). Raw diff Collapse all Expand all
00
11 ; fasm demonstration of writing 64-bit ELF executable
2 ; (thanks to Franti|¡ek G|¡bri|¡)
2 ; (thanks to František Gábriš)
33
44 ; syscall numbers: /usr/src/linux/include/asm-x86_64/unistd.h
55 ; parameters order:
Binary diff not shown
Binary diff not shown
134134 subexpression_closed:
135135 ret
136136 symbol_value:
137 cmp [source_start],0
138 je preprocessor_value
137 mov eax,[source_start]
138 test eax,eax
139 jz preprocessor_value
140 cmp eax,-1
141 je invalid_value
139142 push edi esi
140143 lods word [esi]
141144 cmp al,1Ah
3232 ; cannot simply be copied and put under another distribution licence
3333 ; (including the GNU Public Licence).
3434
35 VERSION_STRING equ "1.73.28"
35 VERSION_STRING equ "1.73.29"
3636
3737 VERSION_MAJOR = 1
3838 VERSION_MINOR = 73
00
11 Visit http://flatassembler.net/ for more information.
2
3
4 version 1.73.29 (Dec 18, 2021)
5
6 [-] Corrected an issue in external use of expression calculator.
27
38
49 version 1.73.28 (Sep 16, 2021)