From 952963c8ab4d6e29845a9ad519ec504ed2fe3344 Mon Sep 17 00:00:00 2001 From: "Marat Zakiyanov (Mario79)" Date: Sun, 26 Jun 2011 17:38:41 +0000 Subject: [PATCH] PCIDEV - memory for "device list" is increased to 16 KB git-svn-id: svn://kolibrios.org@1984 a494cfbc-eb01-0410-851d-a64ba20cac60 --- programs/system/pcidev/trunk/PCIDEV.ASM | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/programs/system/pcidev/trunk/PCIDEV.ASM b/programs/system/pcidev/trunk/PCIDEV.ASM index e86433d5a1..1c5246089c 100644 --- a/programs/system/pcidev/trunk/PCIDEV.ASM +++ b/programs/system/pcidev/trunk/PCIDEV.ASM @@ -50,7 +50,7 @@ load_libraries l_libs_start,end_l_libs mov esi,start_temp_file_name call copy_file_name_path ;----------------------------------------------------------------------------- - mcall 68,12,4096 + mcall 68,12,4096*4 ; 16 Kb - I hope this will be enough for store of data mov [store_text_area_start],eax ;----------------------------------------------------------------------------- call draw_window @@ -146,7 +146,7 @@ prepare_text_area: mov edi,[store_text_area_start] push edi - mov ecx,4096/4 ; I hope this will be enough for store of data + mov ecx,4096 ; 16 Kb - I hope this will be enough for store of data mov eax,dword ' ' cld rep stosd