aboutsummaryrefslogtreecommitdiff
path: root/tests/tcg/mips/mips64-dspr2/io.h
blob: b7db61d7c19e75889e988e63a0ab42d7ee1c3602 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
#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