X-Git-Url: https://git.ucc.asn.au/?a=blobdiff_plain;f=Modules%2FStorage%2FFDDv2%2Fmain.c;fp=Modules%2FStorage%2FFDDv2%2Fmain.c;h=191c50c5e187eb6a98428c135f359e4508ec17c8;hb=bb8e7d800960fe262c8e76ec45870c7202dcef21;hp=0000000000000000000000000000000000000000;hpb=1b89e2cc55cd8d26923d45c7cccf5a0a651ed4c4;p=tpg%2Facess2.git diff --git a/Modules/Storage/FDDv2/main.c b/Modules/Storage/FDDv2/main.c new file mode 100644 index 00000000..191c50c5 --- /dev/null +++ b/Modules/Storage/FDDv2/main.c @@ -0,0 +1,29 @@ +/* + * Acess2 82077AA FDC + * - By John Hodge (thePowersGang) + * + * fdc.c + * - Core file + */ +#include +#include +#include +#include "common.h" + +// === CONSTANTS === + +// === STRUCTURES === + +// === PROTOTYPES === + int FDD_Install(char **Arguments); + +// === GLOBALS === +MODULE_DEFINE(0, 0x110, Storage_FDDv2, FDD_Install, NULL, "x86_ISADMA", NULL); +tDrive gaFDD_Disks[MAX_DISKS]; + +// === CODE === +int FDD_Install(char **Arguments) +{ + return 0; +} +