remove extraneous classes
[slipway.git] / src / edu / berkeley / slipway / Board.java
diff --git a/src/edu/berkeley/slipway/Board.java b/src/edu/berkeley/slipway/Board.java
deleted file mode 100644 (file)
index 33e2eff..0000000
+++ /dev/null
@@ -1,22 +0,0 @@
-package edu.berkeley.slipway;
-
-import edu.berkeley.obits.*;
-import org.ibex.util.Log;
-import java.io.*;
-import java.util.*;
-
-public interface Board {
-
-    /** boot the board using an md4 configuration stream */
-    public abstract void boot(Reader r) throws Exception;
-
-    /** reset the board */
-    public abstract void reset() throws IOException;
-
-    /** the UART inputstream (after loading initial config) */
-    public abstract InputStream getInputStream();
-
-    /** the UART inputstream (after loading initial config) */
-    public abstract OutputStream getOutputStream();
-
-}