2010-06-25 18:47:51 +02:00
|
|
|
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
|
|
|
|
;; ;;
|
|
|
|
;; Copyright (C) KolibriOS team 2004-2007. All rights reserved. ;;
|
|
|
|
;; Copyright (C) MenuetOS 2000-2004 Ville Mikael Turjanmaa ;;
|
|
|
|
;; Distributed under terms of the GNU General Public License ;;
|
|
|
|
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
|
|
|
|
|
|
|
|
$Revision$
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
uglobal
|
|
|
|
dmasize db 0x0
|
|
|
|
dmamode db 0x0
|
|
|
|
endg
|
|
|
|
|
|
|
|
fdc_init: ;start with clean tracks.
|
|
|
|
mov edi,OS_BASE+0xD201
|
|
|
|
mov al,0
|
|
|
|
mov ecx,160
|
|
|
|
rep stosb
|
|
|
|
ret
|
|
|
|
|
2013-05-01 21:48:56 +02:00
|
|
|
;fdc_irq:
|
2010-06-25 18:47:51 +02:00
|
|
|
fdc_null:
|
|
|
|
ret
|
|
|
|
|
2013-05-01 21:48:56 +02:00
|
|
|
|
2010-06-25 18:47:51 +02:00
|
|
|
|