Subversion Repositories Kolibri OS

Compare Revisions

Regard whitespace Rev 1994 → Rev 1995

/programs/system/pcidev/trunk/PCIDEV.ASM
234,6 → 234,15
movzx ecx, byte [total] ; number to draw
mcall 47, 0x00020000,,150 * 65536 + 65, 0x224466
mov ebx,ecx
mov ecx,2
mov edi,[store_text_area_start]
add edi,157
push edi
call binary_to_hex_string
pop edi
mov [edi+2],byte 'h'
mov ah, [MMIO_allowed]
or ah, ah
jz @f
653,7 → 662,9
mov edi,[store_text_area_end]
mov ax,[edx]
mov [edi+1],ax
jmp store_2_digits.1
add [store_text_area_end],dword 5
popa
ret
;-----------------------------------------------------------------------------
store_2_digits:
pusha
662,7 → 673,6
mov ecx,2
mov edi,[store_text_area_end]
call binary_to_hex_string
.1:
add [store_text_area_end],dword 4
popa
ret
733,7 → 743,7
.1: db '(Press S key)',0
 
text_NA:
db 'NA',0
db '--',0
;---------------------------------------------------------------------
system_dir_ProcLib db '/sys/lib/proc_lib.obj',0
 
/programs/system/pcidev/trunk/history.txt
10,11 → 10,12
Full device detection (like "ATI Radeon 9200") will increase app
size a lot and probably it is function of particular drivers
;-----------------------------------------------------------------------------
2.3: PCIDEV 01/07/2011
2.3: PCIDEV 02/07/2011
Author: Marat Zakiyanov aka Mario79 <mario79@bk.ru>
Features:
fixed
* Show the message "NA" if the IRQ is not assigned
* Show the message "--" if the IRQ is not assigned
* Show number of PCI units for saving device list
;-----------------------------------------------------------------------------
2.3: PCIDEV 26/06/2011