diff options
Diffstat (limited to 'os/hal/platforms/Win32/hal_lld.c')
-rw-r--r-- | os/hal/platforms/Win32/hal_lld.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/os/hal/platforms/Win32/hal_lld.c b/os/hal/platforms/Win32/hal_lld.c index 6cf11c02f..6e36a19c6 100644 --- a/os/hal/platforms/Win32/hal_lld.c +++ b/os/hal/platforms/Win32/hal_lld.c @@ -62,12 +62,11 @@ void hal_lld_init(void) { exit(1);
}
- printf("Win32 ChibiOS/RT simulator\n\n");
+ printf("ChibiOS/RT simulator (Win32)\n");
if (!QueryPerformanceFrequency(&slice)) {
printf("QueryPerformanceFrequency() error");
exit(1);
}
- printf("Core Frequency %u Hz\n", (int)slice.LowPart);
slice.QuadPart /= CH_FREQUENCY;
QueryPerformanceCounter(&nextcnt);
nextcnt.QuadPart += slice.QuadPart;
|