forked from KolibriOS/kolibrios
1) Fix handling of parameters of the broken in revision 1361
2) Now the library Box_lib, not loaded when the "shadow" compilation. 3) Small code cleaning git-svn-id: svn://kolibrios.org@1395 a494cfbc-eb01-0410-851d-a64ba20cac60
This commit is contained in:
parent
cca30001ba
commit
63b44af949
@ -47,19 +47,6 @@ include '..\..\..\develop\libraries\box_lib\load_lib.mac'
|
|||||||
center fix true
|
center fix true
|
||||||
|
|
||||||
START: ; Start of execution
|
START: ; Start of execution
|
||||||
sys_load_library library_name, cur_dir_path, library_path, system_path, \
|
|
||||||
err_message_found_lib, head_f_l, myimport, err_message_import, head_f_i
|
|
||||||
|
|
||||||
cmp eax,-1
|
|
||||||
jne @f
|
|
||||||
mcall -1 ;exit if not open box_lib.obj
|
|
||||||
@@:
|
|
||||||
mcall 40,0x27 ;¬ ᪠á¨á⥬ëå ᮡë⨩
|
|
||||||
|
|
||||||
get_sys_colors 1,0
|
|
||||||
edit_boxes_set_sys_color edit1,editboxes_end,sc
|
|
||||||
check_boxes_set_sys_color ch1_dbg,ch1_dbg+ch_struc_size,sc
|
|
||||||
|
|
||||||
mov edi, fileinfos
|
mov edi, fileinfos
|
||||||
mov ecx, (fileinfos_end-fileinfos)/4
|
mov ecx, (fileinfos_end-fileinfos)/4
|
||||||
or eax, -1
|
or eax, -1
|
||||||
@ -71,7 +58,7 @@ sys_load_library library_name, cur_dir_path, library_path, system_path, \
|
|||||||
mcall
|
mcall
|
||||||
|
|
||||||
cmp [params],0
|
cmp [params],0
|
||||||
jz red
|
jz start_1
|
||||||
|
|
||||||
mov ecx,10
|
mov ecx,10
|
||||||
mov eax,' '
|
mov eax,' '
|
||||||
@ -92,17 +79,15 @@ sys_load_library library_name, cur_dir_path, library_path, system_path, \
|
|||||||
call mov_param_str
|
call mov_param_str
|
||||||
; mov edi,infile
|
; mov edi,infile
|
||||||
; DEBUGF " input: %s\n",edi
|
; DEBUGF " input: %s\n",edi
|
||||||
inc esi
|
|
||||||
mov edi,outfile
|
mov edi,outfile
|
||||||
call mov_param_str
|
call mov_param_str
|
||||||
; mov edi,outfile
|
; mov edi,outfile
|
||||||
; DEBUGF "output: %s\n",edi
|
; DEBUGF "output: %s\n",edi
|
||||||
inc esi
|
|
||||||
mov edi,path
|
mov edi,path
|
||||||
call mov_param_str
|
call mov_param_str
|
||||||
; mov edi,path
|
; mov edi,path
|
||||||
; DEBUGF " path: %s\n",edi
|
; DEBUGF " path: %s\n",edi
|
||||||
|
dec esi
|
||||||
cmp [esi], dword ',run'
|
cmp [esi], dword ',run'
|
||||||
jne @f
|
jne @f
|
||||||
mov [_run_outfile],1
|
mov [_run_outfile],1
|
||||||
@ -111,6 +96,19 @@ sys_load_library library_name, cur_dir_path, library_path, system_path, \
|
|||||||
mov [_mode],CONSOLE_MODE
|
mov [_mode],CONSOLE_MODE
|
||||||
jmp start
|
jmp start
|
||||||
|
|
||||||
|
start_1:
|
||||||
|
sys_load_library library_name, cur_dir_path, library_path, system_path, \
|
||||||
|
err_message_found_lib, head_f_l, myimport, err_message_import, head_f_i
|
||||||
|
|
||||||
|
cmp eax,-1
|
||||||
|
jne @f
|
||||||
|
mcall -1 ;exit if not open box_lib.obj
|
||||||
|
@@:
|
||||||
|
mcall 40,0x27 ;¬ ᪠á¨á⥬ëå ᮡë⨩
|
||||||
|
|
||||||
|
get_sys_colors 1,0
|
||||||
|
edit_boxes_set_sys_color edit1,editboxes_end,sc
|
||||||
|
check_boxes_set_sys_color ch1_dbg,ch1_dbg+ch_struc_size,sc
|
||||||
|
|
||||||
red: ; Redraw
|
red: ; Redraw
|
||||||
call draw_window
|
call draw_window
|
||||||
@ -412,21 +410,21 @@ lf db 13,10,0
|
|||||||
|
|
||||||
|
|
||||||
mov_param_str:
|
mov_param_str:
|
||||||
|
cld
|
||||||
@@:
|
@@:
|
||||||
mov al,[esi]
|
lodsb
|
||||||
cmp al,','
|
cmp al,','
|
||||||
je @f
|
je @f
|
||||||
cmp al,0
|
stosb
|
||||||
je @f
|
test al,al
|
||||||
mov [edi],al
|
jnz @b
|
||||||
inc esi
|
|
||||||
inc edi
|
|
||||||
jmp @b
|
|
||||||
@@:
|
@@:
|
||||||
mov al,0
|
xor al,al
|
||||||
stosb
|
stosb
|
||||||
ret
|
ret
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
start:
|
start:
|
||||||
cmp [_mode],NORMAL_MODE
|
cmp [_mode],NORMAL_MODE
|
||||||
jne @f
|
jne @f
|
||||||
@ -540,14 +538,12 @@ times $04 db $00,$01
|
|||||||
times $08 db $00
|
times $08 db $00
|
||||||
|
|
||||||
;include_debug_strings
|
;include_debug_strings
|
||||||
|
program_end:
|
||||||
params db 0 ; 'TINYPAD.ASM,TINYPAD,/HD/1/TPAD4/',
|
; params db 0 ; 'TINYPAD.ASM,TINYPAD,/HD/1/TPAD4/',
|
||||||
|
params rb 4096
|
||||||
cur_dir_path rb 4096
|
cur_dir_path rb 4096
|
||||||
library_path rb 4096
|
library_path rb 4096
|
||||||
|
|
||||||
program_end:
|
|
||||||
|
|
||||||
rb 1000h
|
|
||||||
align 4
|
align 4
|
||||||
|
|
||||||
include 'variable.inc'
|
include 'variable.inc'
|
||||||
|
Loading…
Reference in New Issue
Block a user