Added I8042 (ps/2) and Parallel port types

This commit is contained in:
endolf 2003-07-31 19:37:29 +00:00
parent 1b4afd7352
commit 52ad786cb0

View file

@ -249,5 +249,16 @@ public interface Controller {
* Serial port
*/
public static final PortType SERIAL = new PortType("Serial port");
/**
* i8042
*/
public static final PortType I8042 = new PortType("i8042 (PS/2)");
/**
* Parallel port
*/
public static final PortType PARALLEL = new PortType("Parallel port");
} // class Controller.PortType
} // interface Controller