Palacios Public Git Repository

To checkout Palacios execute

  git clone http://v3vee.org/palacios/palacios.web/palacios.git
This will give you the master branch. You probably want the devel branch or one of the release branches. To switch to the devel branch, simply execute
  cd palacios
  git checkout --track -b devel origin/devel
The other branches are similar.


Fixed the FS/GS save/restore problem
Peter Dinda [Mon, 23 Jun 2008 17:14:08 +0000 (17:14 +0000)]
Added PCI
Added Out/In_DWord

palacios/include/geekos/io.h

index bd23614..230300b 100644 (file)
@@ -1,7 +1,7 @@
 /*
  * x86 port IO routines
  * Copyright (c) 2001, David H. Hovemeyer <daveho@cs.umd.edu>
- * $Revision: 1.1 $
+ * $Revision: 1.2 $
  * 
  * This is free software.  You are permitted to use,
  * redistribute, and modify it as specified in the file "COPYING".
@@ -18,6 +18,9 @@ uchar_t In_Byte(ushort_t port);
 void Out_Word(ushort_t port, ushort_t value);
 ushort_t In_Word(ushort_t port);
 
+void Out_DWord(ushort_t port, uint_t value);
+uint_t In_DWord(ushort_t port);
+
 void IO_Delay(void);
 
 #endif  /* GEEKOS_IO_H */