Re-worked the Game Port and Joystick code. They are now separate.

Moved all "ports" (Game, Parallel, Serial) into new folder ports/.
This commit is contained in:
waltje
2018-04-26 16:46:42 -04:00
parent 1fc2d10a21
commit 80093782ca
67 changed files with 2404 additions and 2386 deletions

View File

@@ -9,7 +9,7 @@
* Implementation of the SMC FDC37C663 and FDC37C665 Super
* I/O Chips.
*
* Version: @(#)sio_fdc37c66x.c 1.0.5 2018/04/19
* Version: @(#)sio_fdc37c66x.c 1.0.6 2018/04/26
*
* Authors: Fred N. van Kempen, <decwiz@yahoo.com>
* Miran Grca, <mgrca8@gmail.com>
@@ -43,10 +43,10 @@
#include <wchar.h>
#include "../emu.h"
#include "../io.h"
#include "../device.h"
#include "../pci.h"
#include "../parallel.h"
#include "../serial.h"
#include "../device.h"
#include "../ports/parallel.h"
#include "../ports/serial.h"
#include "../floppy/fdd.h"
#include "../floppy/fdc.h"
#include "../disk/hdc.h"