Subversion Repositories Kolibri OS

Rev

Rev 2300 | Go to most recent revision | Show entire file | Regard whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 2300 Rev 2302
Line 19... Line 19...
19
;;          GNU GENERAL PUBLIC LICENSE                             ;;
19
;;          GNU GENERAL PUBLIC LICENSE                             ;;
20
;;             Version 2, June 1991                                ;;
20
;;             Version 2, June 1991                                ;;
21
;;                                                                 ;;
21
;;                                                                 ;;
22
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
22
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
Line 23... Line 23...
23
 
23
 
Line 24... Line 24...
24
$Revision: 2300 $
24
$Revision: 2302 $
25
 
25
 
Line 26... Line 26...
26
__DEBUG_LEVEL_OLD__	equ __DEBUG_LEVEL__	; use seperate debug level for network part of kernel
26
__DEBUG_LEVEL_OLD__	equ __DEBUG_LEVEL__	; use seperate debug level for network part of kernel
Line 381... Line 381...
381
	; there are still active devices, find one and make it default
381
	; there are still active devices, find one and make it default
382
	xor	eax, eax
382
	xor	eax, eax
383
	mov	ecx, MAX_NET_DEVICES
383
	mov	ecx, MAX_NET_DEVICES
384
	mov	edi, NET_DRV_LIST+4
384
	mov	edi, NET_DRV_LIST+4
385
	repe	scasd
385
	repe	scasd
386
	jz	@f
386
	je	@f
387
	push	dword [edi-4]
387
	push	dword [edi-4]
388
	pop	[NET_DRV_LIST]
388
	pop	[NET_DRV_LIST]
389
       @@:
389
       @@:
Line 390... Line 390...
390
 
390