search for: print_out

Displaying 2 results from an estimated 2 matches for "print_out".

2007 Apr 18
1
[RFC/PATCH LGUEST X86_64 03/13] lguest64 core
...sm/page.h> +#include <asm/msr.h> +#include <asm/segment.h> +#include "lguest.h" + +.text +.align PAGE_SIZE + +.global start_hyper_text + .type start_hyper_text, @function +start_hyper_text: + +.global host_syscall +host_syscall: + .quad 0 + +#define PRINT_L(L) \ + PRINT_OUT($L) + +#define PRINT_N(n) \ + PRINT_OUT($'0' + $n) + +#define PRINT_HEX(n) \ + mov n, %cl; \ + and $0xf, %cl; \ + cmp $0xa, %cl; \ + jge 11f; \ + add $'0', %cl; \ + jmp 12f; \ +11: add $('a' - 10), %cl; \...
2007 Apr 18
1
[RFC/PATCH LGUEST X86_64 03/13] lguest64 core
...sm/page.h> +#include <asm/msr.h> +#include <asm/segment.h> +#include "lguest.h" + +.text +.align PAGE_SIZE + +.global start_hyper_text + .type start_hyper_text, @function +start_hyper_text: + +.global host_syscall +host_syscall: + .quad 0 + +#define PRINT_L(L) \ + PRINT_OUT($L) + +#define PRINT_N(n) \ + PRINT_OUT($'0' + $n) + +#define PRINT_HEX(n) \ + mov n, %cl; \ + and $0xf, %cl; \ + cmp $0xa, %cl; \ + jge 11f; \ + add $'0', %cl; \ + jmp 12f; \ +11: add $('a' - 10), %cl; \...