qemu/tests/tcg/mips/mips64-dspr2/io.h
Jia Liu d70080c4e3 target-mips: Add ASE DSP testcases
Add MIPS ASE DSP testcases.

Signed-off-by: Jia Liu <proljc@gmail.com>
Signed-off-by: Aurelien Jarno <aurelien@aurel32.net>
2012-10-31 21:37:21 +01:00

23 lines
584 B
C

#ifndef _ASM_IO_H
#define _ASM_IO_H
extern int printf(const char *fmt, ...);
extern unsigned long get_ticks(void);
#define _read(source) \
({ unsigned long __res; \
__asm__ __volatile__( \
"mfc0\t%0, " #source "\n\t" \
: "=r" (__res)); \
__res; \
})
#define __read(source) \
({ unsigned long __res; \
__asm__ __volatile__( \
"move\t%0, " #source "\n\t" \
: "=r" (__res)); \
__res; \
})
#endif