X-Git-Url: http://v3vee.org/palacios/gitweb/gitweb.cgi?p=palacios.git;a=blobdiff_plain;f=test%2Fgeekos_test_vm%2Finclude%2Fgeekos%2Fvm_cons.h;fp=test%2Fgeekos_test_vm%2Finclude%2Fgeekos%2Fvm_cons.h;h=f9bdac768646ab2d865801ee97ddbb677aceb476;hp=0000000000000000000000000000000000000000;hb=a70930549d1b741704dd7af4e6bb0e89f6f8a519;hpb=afb634a80f946634454a5d067a92aa600227bd93 diff --git a/test/geekos_test_vm/include/geekos/vm_cons.h b/test/geekos_test_vm/include/geekos/vm_cons.h new file mode 100644 index 0000000..f9bdac7 --- /dev/null +++ b/test/geekos_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