Subversion Repositories Kolibri OS

Compare Revisions

Regard whitespace Rev 4273 → Rev 4274

/programs/develop/fasm/trunk/fasm.asm
132,6 → 132,10
jne @f
mov [_run_outfile],1
@@:
cmp [esi], dword ',dbg'
jne @f
mov [_run_outfile],2
@@:
mov [_mode],CONSOLE_MODE
jmp start
;---------------------------------------------------------------------
662,6 → 666,12
mov edx,outfile
call make_fullpaths
xor ecx,ecx
 
cmp [_run_outfile],2 ; param is ',dbg'
jne run
mcall 70,file_info_debug
jmp @f
run:
mcall 70,file_info_start
@@:
jmp exit_program
/programs/develop/fasm/trunk/version.inc
33,7 → 33,7
; cannot simply be copied and put under another distribution licence
; (including the GNU Public Licence).
 
VERSION_STRING equ "1.71.13"
VERSION_STRING equ "1.71.14"
 
VERSION_MAJOR = 1
VERSION_MINOR = 71