9 lines
153 B
C
9 lines
153 B
C
|
typedef __builtin_msr_t msr_t;
|
||
|
|
||
|
static msr_t rdmsr(unsigned long index)
|
||
|
{
|
||
|
return __builtin_rdmsr(index);
|
||
|
}
|
||
|
|
||
|
#warning "romcc should die gracefully here"
|