Subversion Repositories Kolibri OS

Rev

Rev 5363 | Details | Compare with Previous | Last modification | View Log | RSS feed

Rev Author Line No. Line
2288 clevermous 1
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
2
;;                                                              ;;
5363 yogev_ezra 3
;; Copyright (C) KolibriOS team 2004-2015. All rights reserved. ;;
2288 clevermous 4
;; Distributed under terms of the GNU General Public License    ;;
5
;;                                                              ;;
6
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
7
 
8
$Revision: 8051 $
9
 
10
 
11
;***************************************************
8051 rgimad 12
;      clear the DRIVE_DATA table,
13
;      search for FDDs and add them into the table
14
;      author - Mario79
2288 clevermous 15
;***************************************************
16
        xor     eax, eax
17
        mov     edi, DRIVE_DATA
3627 Serge 18
        mov     ecx, DRIVE_DATA_SIZE/4
2288 clevermous 19
        cld
20
        rep stosd
21
 
22
        mov     al, 0x10
23
        out     0x70, al
24
        mov     cx, 0xff
25
wait_cmos:
26
        dec     cx
27
        test    cx, cx
28
        jnz     wait_cmos
29
        in      al, 0x71
30
        mov     [DRIVE_DATA], al
31
        test    al, al
32
        jz      @f
3771 mario79 33
 
34
        stdcall attach_int_handler, 6, FDCInterrupt, 0
35
        DEBUGF  1, "K : Set IDE IRQ6 return code %x\n", eax
4273 clevermous 36
        call    floppy_init
2288 clevermous 37
@@:
38