kvm: rename kvm/user to kvm/test
[qemu-kvm/amd-iommu.git] / kvm / test / x86 / print.h
blobd5bd2f9978dc4b65f11ea6f45a65a2fa23fe0707
1 #ifndef PRINT_H
2 #define PRINT_H
4 .macro PRINT text
6 .data
8 333: .asciz "\text\n"
10 .previous
12 push %rdi
13 lea 333b, %rdi
14 call print
15 pop %rdi
17 .endm
19 #endif