X-Git-Url: http://v3vee.org/palacios/gitweb/gitweb.cgi?p=palacios.git;a=blobdiff_plain;f=misc%2Ftest_vm%2Finclude%2Fgeekos%2Fvm_cons.h;fp=misc%2Ftest_vm%2Finclude%2Fgeekos%2Fvm_cons.h;h=f9bdac768646ab2d865801ee97ddbb677aceb476;hp=0000000000000000000000000000000000000000;hb=02cec8a61395addd7d74daae5462e38fb1f256e6;hpb=1f3ac121a2cb2eff7c71c84a799096c2cd744d1b diff --git a/misc/test_vm/include/geekos/vm_cons.h b/misc/test_vm/include/geekos/vm_cons.h new file mode 100644 index 0000000..f9bdac7 --- /dev/null +++ b/misc/test_vm/include/geekos/vm_cons.h @@ -0,0 +1,25 @@ +#ifndef VM_CONS_H +#define VM_CONS_H + +#include +#include +#include + + +void Init_VMCons(); + + +void VMConsPutChar(unsigned char c); + +void VMConsPrint(const char * format, ...); +void VMConsPrintLevel(int level, const char * format, ...); +void VMConsPrintList(const char * format, va_list ap); + +void VMConsPutLine(char * line); +void VMConsPutLineN(char * line, int len); + + +void VMConsPrintHex(unsigned char x); +void VMConsMemDump(unsigned char *start, int n); + +#endif