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 the framework for interupt delivery
[palacios.git] / palacios / src / geekos / vm.c
index b1149fb..b8e497b 100644 (file)
@@ -83,7 +83,7 @@ int IO_BOCHS_debug(ushort_t port, void * src, uint_t length) {
 
   bochs_debug_buf[bochs_debug_offset++] = *(char*)src;
 
-  if ((*(char*)src == '\n') ||  (bochs_debug_offset == 1023)) {
+  if ((*(char*)src == 0xa) ||  (bochs_debug_offset == 1023)) {
     SerialPrint("BOCHS>%s", bochs_debug_buf);
     memset(bochs_debug_buf, 0, 1024);
     bochs_debug_offset = 0;