forked from KolibriOS/kolibrios
Andrew Dent
4165acdf83
- To better support git, remove SVN dependant `$Revision$` from file headers. This does *not* remove: the use of `__REV__` macro in `boostr.inc` and `kernel.asm` - Header Copyright notices updated to 2024. - Minimal white space cleanup (trailing spaces automatically removed). - Note: `asmxygen.py` has a *large* amount of whitespace cleanup, due to incorrect line endings. git-svn-id: svn://kolibrios.org@10051 a494cfbc-eb01-0410-851d-a64ba20cac60
37 lines
1.1 KiB
PHP
37 lines
1.1 KiB
PHP
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
|
|
;; ;;
|
|
;; Copyright (C) KolibriOS team 2004-2024. All rights reserved. ;;
|
|
;; Distributed under terms of the GNU General Public License ;;
|
|
;; ;;
|
|
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
|
|
|
|
|
|
;***************************************************
|
|
; clear the DRIVE_DATA table,
|
|
; search for FDDs and add them into the table
|
|
; author - Mario79
|
|
;***************************************************
|
|
xor eax, eax
|
|
mov edi, DRIVE_DATA
|
|
mov ecx, DRIVE_DATA_SIZE/4
|
|
cld
|
|
rep stosd
|
|
|
|
mov al, 0x10
|
|
out 0x70, al
|
|
mov cx, 0xff
|
|
wait_cmos:
|
|
dec cx
|
|
test cx, cx
|
|
jnz wait_cmos
|
|
in al, 0x71
|
|
mov [DRIVE_DATA], al
|
|
test al, al
|
|
jz @f
|
|
|
|
stdcall attach_int_handler, 6, FDCInterrupt, 0
|
|
DEBUGF 1, "K : Set IDE IRQ6 return code %x\n", eax
|
|
call floppy_init
|
|
@@:
|
|
|