renamed all files which are part of the x86 emulator to start with "x86"

This commit is contained in:
Markus Fröschle
2013-12-30 11:24:14 +00:00
parent 4d1dbf1324
commit 5a30b0f61c
16 changed files with 35 additions and 121 deletions

View File

@@ -42,6 +42,10 @@ typedef bool (*checker_func)(void);
extern __inline__ void wait(uint32_t) __attribute__((always_inline));
extern __inline__ bool waitfor(uint32_t us, checker_func condition) __attribute__((always_inline));
extern __inline__ uint32_t get_timer(void)
{
return MCF_SLT_SCNT(0);
}
/*
* wait for the specified number of us on slice timer 0. Replaces the original routines that had
* the number of useconds to wait for hardcoded in their name.