Subversion Repositories Kolibri OS

Rev

Rev 1505 | 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
;; Copyright (C) MenuetOS 2000-2004 Ville Mikael Turjanmaa      ;;
5
;; Distributed under terms of the GNU General Public License    ;;
6
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
7
 
593 mikedld 8
$Revision: 3487 $
431 serge 9
 
593 mikedld 10
 
1 ha 11
 
12
uglobal
766 Rus 13
  dmasize	  db 0x0
14
  dmamode	  db 0x0
1 ha 15
endg
16
 
766 Rus 17
fdc_init:				;start with clean tracks.
18
	mov edi,OS_BASE+0xD201
19
	mov al,0
20
	mov ecx,160
21
	rep stosb
1 ha 22
ret
23
 
3487 art_zh 24
;fdc_irq:
19 mario79 25
fdc_null:
1 ha 26
ret
27