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.


updated test vm to current palacios version and fixed pci scan
[palacios.git] / misc / test_vm / include / geekos / vm_cons.h
1 #ifndef VM_CONS_H
2 #define VM_CONS_H
3
4 #include <geekos/string.h>
5 #include <geekos/io.h>
6 #include <geekos/screen.h>
7
8
9 void Init_VMCons();
10
11
12 void VMConsPutChar(unsigned char c);
13
14 void VMConsPrint(const char * format, ...);
15 void VMConsPrintLevel(int level, const char * format, ...);
16 void VMConsPrintList(const char * format, va_list ap);
17
18 void VMConsPutLine(char * line); 
19 void VMConsPutLineN(char * line, int len);
20
21
22 void VMConsPrintHex(unsigned char x);
23 void VMConsMemDump(unsigned char *start, int n);
24
25 #endif