flat assembler
Message board for the users of flat assembler.
![]() |
Author |
|
Kain 28 Jun 2005, 03:08
Yes:
fasm file.asm file.obj >temp.txt ... ... del temp.txt of course, this won't output the erros... |
|||
![]() |
|
xanatose 28 Jun 2005, 04:54
Not very usefull
![]() Im using fasm to compile a series of obj and its 2 line output means I need to scroll on a console to catch the errors. Anyway, I check the source of fasm and did not find an option, instead I edited it and made it quiet. Not an optimal solution but it works for my purposes. |
|||
![]() |
|
veach1 28 Jun 2005, 07:26
I use such .bat file
Code: @echo off fasm.exe %1.asm %1.exe if errorlevel 1 goto er goto ex :er pause :ex |
|||
![]() |
|
vid 28 Jun 2005, 07:49
maybe
Code: fasm %1.asm %1.exe >file.txt if errorlevel 1 goto er goto ex :er type file.txt :ex del file.txt but in case of error you still have to overgo those 2 lines. |
|||
![]() |
|
decard 28 Jun 2005, 13:49
or you can always modify fasm code and recompile it:
(fasm.asm of win32 console version, line 10-11): Code: ; mov esi,_logo ; call display_string line 25, after "call formatter", add: Code: xor al,al
jmp exit_program |
|||
![]() |
|
xanatose 29 Jun 2005, 03:16
Thanks everyone for responding.
|
|||
![]() |
|
< Last Thread | Next Thread > |
Forum Rules:
|
Copyright © 1999-2025, Tomasz Grysztar. Also on GitHub, YouTube.
Website powered by rwasa.