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 32 bit operand support
[palacios.git] / palacios / src / geekos / svm_ctrl_regs.c
index 3929222..1ae1ccf 100644 (file)
@@ -13,8 +13,6 @@ int handle_cr0_write(struct guest_info * info) {
   char instr[15];
   
   
-
-
   if (info->cpu_mode == REAL) {
     int index = 0;
     int ret;
@@ -28,11 +26,8 @@ int handle_cr0_write(struct guest_info * info) {
     }
 
     while (is_prefix_byte(instr[index])) {
-      PrintDebug("instr(%d): 0x%x\n", index, instr[index]);
       index++; 
     }
-    PrintDebug("instr(%d): 0x%x\n", index, instr[index]);
-    PrintDebug("instr(%d): 0x%x\n", index+1, instr[index + 1]);
 
     if ((instr[index] == cr_access_byte) && 
        (instr[index + 1] == lmsw_byte) &&