From f5244313ea69647687cec100b734ba16bb04ce90 Mon Sep 17 00:00:00 2001 From: Shiselster Date: Thu, 18 Jun 2020 17:21:15 +0300 Subject: [PATCH] Fixed win32ax include path When you download Flat Assembler from its official website and extract the zip, the directory hierarchy is such that win32ax.inc is found directly under the include directory under the newly created main folder, where FASM.exe is found. Thus the change enables to use the assembler just like the README advises, (simply by running fasm main.asm) without any further changes needed - neither to the fasm command-line args, the directory hierarchy, nor the .asm source file. --- main.asm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/main.asm b/main.asm index 2e409e1..233fc8d 100644 --- a/main.asm +++ b/main.asm @@ -88,7 +88,7 @@ format PE GUI 6.0 entry initialize - include '\fasm\include\win32ax.inc' + include 'include\win32ax.inc' macro init_dll dll_id, dll_name, [func_name] {