public void read(File f) throws IOException {
   MC68000InputStream in = new MC68000InputStream(new BufferedInputStream(new FileInputStream(f)));
   try {
     read(in);
   } finally {
     in.close();
   }
 }