blob: d5bd2f9978dc4b65f11ea6f45a65a2fa23fe0707 [file] [log] [blame]
#ifndef PRINT_H
#define PRINT_H
.macro PRINT text
.data
333: .asciz "\text\n"
.previous
push %rdi
lea 333b, %rdi
call print
pop %rdi
.endm
#endif