Subversion Repositories Kolibri OS

Rev

Rev 431 | Rev 1229 | Go to most recent revision | Details | Compare with Previous | Last modification | View Log | RSS feed

Rev Author Line No. Line
431 serge 1
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
2
;;                                                              ;;
3
;; Copyright (C) KolibriOS team 2004-2007. All rights reserved. ;;
4
;; Distributed under terms of the GNU General Public License    ;;
5
;;                                                              ;;
6
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
7
 
593 mikedld 8
$Revision: 593 $
9
 
10
 
1 ha 11
;***************************************************
12
;      предварительная очистка области таблицы
13
;      поиск и занесение в таблицу приводов FDD
14
;      автор Mario79
15
;***************************************************
16
        xor  eax,eax
381 serge 17
        mov  edi,DRIVE_DATA
18
        mov  ecx,16384
1 ha 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
      cmp cx,0
28
      jne wait_cmos
29
      in  al,0x71
381 serge 30
      mov [DRIVE_DATA],al