Subversion Repositories Kolibri OS

Rev

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

Rev 1635 Rev 2434
Line 3... Line 3...
3
;; Copyright (C) KolibriOS team 2004-2007. All rights reserved. ;;
3
;; Copyright (C) KolibriOS team 2004-2007. All rights reserved. ;;
4
;; Distributed under terms of the GNU General Public License    ;;
4
;; Distributed under terms of the GNU General Public License    ;;
5
;;                                                              ;;
5
;;                                                              ;;
6
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
6
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
Line 7... Line 7...
7
 
7
 
Line 8... Line 8...
8
$Revision: 1288 $
8
$Revision: 2434 $
9
 
9
 
10
 
10
 
Line 342... Line 342...
342
	e3c59x_tx_buff = e3c59x_rx_buff+E3C59X_RX_BUFFER_SIZE
342
        e3c59x_tx_buff = e3c59x_rx_buff+E3C59X_RX_BUFFER_SIZE
343
	e3c59x_dpd_buff = e3c59x_tx_buff+E3C59X_TX_BUFFER_SIZE
343
        e3c59x_dpd_buff = e3c59x_tx_buff+E3C59X_TX_BUFFER_SIZE
344
	e3c59x_upd_buff = e3c59x_dpd_buff+(E3C59X_DPD_SIZE*E3C59X_NUM_TX_DESC)
344
        e3c59x_upd_buff = e3c59x_dpd_buff+(E3C59X_DPD_SIZE*E3C59X_NUM_TX_DESC)
Line 345... Line 345...
345
 
345
 
346
uglobal
346
uglobal
-
 
347
e3c59x_curr_upd:
347
e3c59x_curr_upd: dd 0
348
                 dd 0
-
 
349
e3c59x_prev_dpd:
348
e3c59x_prev_dpd: dd 0
350
                 dd 0
-
 
351
e3c59x_prev_tx_frame:
349
e3c59x_prev_tx_frame: dd 0
352
                      dd 0
-
 
353
e3c59x_transmit_function:
350
e3c59x_transmit_function: dd 0
354
                          dd 0
-
 
355
e3c59x_receive_function:
351
e3c59x_receive_function: dd 0
356
                         dd 0
Line 352... Line 357...
352
endg
357
endg
353
 
358
 
-
 
359
iglobal
354
iglobal
360
e3c59x_ver_id:
Line 355... Line 361...
355
e3c59x_ver_id: db 17
361
               db 17
356
endg
362
endg
-
 
363
 
357
 
364
uglobal
-
 
365
e3c59x_full_bus_master:
358
uglobal
366
                        db 0
-
 
367
e3c59x_has_hwcksm:
359
e3c59x_full_bus_master: db 0
368
                    db 0
-
 
369
e3c59x_preamble:
360
e3c59x_has_hwcksm:  db 0
370
                 db 0
-
 
371
e3c59x_dn_list_ptr_cleared:
361
e3c59x_preamble: db 0
372
                            db 0
Line 362... Line 373...
362
e3c59x_dn_list_ptr_cleared: db 0
373
e3c59x_self_directed_packet:
-
 
374
                             rb 6
363
e3c59x_self_directed_packet: rb 6
375
endg
-
 
376
 
364
endg
377
if defined E3C59X_DEBUG
-
 
378
e3c59x_hw_type_str:
365
 
379
                    db "Detected hardware type  : ", 0
-
 
380
e3c59x_device_str:
366
if defined E3C59X_DEBUG
381
                   db  "Device ID               : 0x"
-
 
382
e3c59x_device_id_str:
367
e3c59x_hw_type_str: db "Detected hardware type  : ", 0
383
                      db "ffff", 13, 10, 0
-
 
384
e3c59x_vendor_str:
368
e3c59x_device_str: db  "Device ID               : 0x"
385
                   db  "Vendor ID               : 0x"
-
 
386
e3c59x_vendor_id_str:
369
e3c59x_device_id_str: db "ffff", 13, 10, 0
387
                      db "ffff", 13, 10, 0
-
 
388
e3c59x_io_info_str:
370
e3c59x_vendor_str: db  "Vendor ID               : 0x"
389
                    db "IO address              : 0x"
-
 
390
e3c59x_io_addr_str:
371
e3c59x_vendor_id_str: db "ffff", 13, 10, 0
391
                    db "ffff", 13, 10, 0
-
 
392
e3c59x_mac_info_str:
372
e3c59x_io_info_str: db "IO address              : 0x"
393
                     db "MAC address             : "
-
 
394
e3c59x_mac_addr_str:
373
e3c59x_io_addr_str: db "ffff", 13, 10, 0
395
                     db "ff:ff:ff:ff:ff:ff", 13, 10, 0
-
 
396
e3c59x_boomerang_str:
374
e3c59x_mac_info_str: db "MAC address             : "
397
                      db " (boomerang)", 13, 10, 0
375
e3c59x_mac_addr_str: db "ff:ff:ff:ff:ff:ff", 13, 10, 0
398
e3c59x_vortex_str:
-
 
399
                   db " (vortex)", 13, 10, 0
376
e3c59x_boomerang_str: db " (boomerang)", 13, 10, 0
400
e3c59x_link_type_str:
-
 
401
                      db "Established link type   : ", 0
Line -... Line 402...
-
 
402
e3c59x_new_line_str:
377
e3c59x_vortex_str: db " (vortex)", 13, 10, 0
403
                     db 13, 10, 0
Line 378... Line 404...
378
e3c59x_link_type_str: db "Established link type   : ", 0
404
e3c59x_link_type:
379
e3c59x_new_line_str: db 13, 10, 0
405
                  dd 0
380
e3c59x_link_type: dd 0
406
 
381
 
407
e3c59x_charset: