191c50c5e187eb6a98428c135f359e4508ec17c8
[tpg/acess2.git] / Modules / Storage / FDDv2 / main.c
1 /*
2  * Acess2 82077AA FDC
3  * - By John Hodge (thePowersGang)
4  *
5  * fdc.c
6  * - Core file
7  */
8 #include <acess.h>
9 #include <modules.h>
10 #include <fs_devfs.h>
11 #include "common.h"
12
13 // === CONSTANTS ===
14
15 // === STRUCTURES ===
16
17 // === PROTOTYPES ===
18  int    FDD_Install(char **Arguments);
19
20 // === GLOBALS ===
21 MODULE_DEFINE(0, 0x110, Storage_FDDv2, FDD_Install, NULL, "x86_ISADMA", NULL);
22 tDrive  gaFDD_Disks[MAX_DISKS];
23
24 // === CODE ===
25 int FDD_Install(char **Arguments)
26 {
27         return 0;
28 }
29

UCC git Repository :: git.ucc.asn.au