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.


added functioning ramdisk, makefile support
[palacios.git] / palacios / include / devices / ide.h
index 940882b..d35dfe8 100644 (file)
@@ -16,6 +16,8 @@ typedef uint64_t Bit64u;
 #endif
 
 
+#define MAX_ATA_CHANNEL 4
+
 typedef enum _sense {
       SENSE_NONE = 0, 
       SENSE_NOT_READY = 2, 
@@ -184,9 +186,12 @@ struct  channel_t {
 
 
 
+struct  ramdisk_t {
+  struct channel_t channels[MAX_ATA_CHANNEL];
+};
+
 
 
-struct ramdisk_t;