summaryrefslogtreecommitdiff
path: root/board/MAI/bios_emulator/scitech/src/pm/stub/ztimer.c
diff options
context:
space:
mode:
authorwdenk <wdenk>2003-06-27 21:31:46 +0000
committerwdenk <wdenk>2003-06-27 21:31:46 +0000
commit8bde7f776c77b343aca29b8c7b58464d915ac245 (patch)
tree20f1fd99975215e7c658454a15cdb4ed4694e2d4 /board/MAI/bios_emulator/scitech/src/pm/stub/ztimer.c
parent993cad9364c6b87ae429d1ed1130d8153f6f027e (diff)
* Code cleanup:LABEL_2003_06_27_2340
- remove trailing white space, trailing empty lines, C++ comments, etc. - split cmd_boot.c (separate cmd_bdinfo.c and cmd_load.c) * Patches by Kenneth Johansson, 25 Jun 2003: - major rework of command structure (work done mostly by Michal Cendrowski and Joakim Kristiansen)
Diffstat (limited to 'board/MAI/bios_emulator/scitech/src/pm/stub/ztimer.c')
-rw-r--r--board/MAI/bios_emulator/scitech/src/pm/stub/ztimer.c20
1 files changed, 10 insertions, 10 deletions
diff --git a/board/MAI/bios_emulator/scitech/src/pm/stub/ztimer.c b/board/MAI/bios_emulator/scitech/src/pm/stub/ztimer.c
index 9bad6c0975..820e292390 100644
--- a/board/MAI/bios_emulator/scitech/src/pm/stub/ztimer.c
+++ b/board/MAI/bios_emulator/scitech/src/pm/stub/ztimer.c
@@ -36,7 +36,7 @@ Initialise the Zen Timer module internals.
****************************************************************************/
void __ZTimerInit(void)
{
- // TODO: Do any specific internal initialisation in here
+ /* TODO: Do any specific internal initialisation in here */
}
/****************************************************************************
@@ -46,8 +46,8 @@ Start the Zen Timer counting.
static void __LZTimerOn(
LZTimerObject *tm)
{
- // TODO: Start the Zen Timer counting. This should be a macro if
- // possible.
+ /* TODO: Start the Zen Timer counting. This should be a macro if */
+ /* possible. */
}
/****************************************************************************
@@ -57,8 +57,8 @@ Compute the lap time since the timer was started.
static ulong __LZTimerLap(
LZTimerObject *tm)
{
- // TODO: Compute the lap time between the current time and when the
- // timer was started.
+ /* TODO: Compute the lap time between the current time and when the */
+ /* timer was started. */
return 0;
}
@@ -69,7 +69,7 @@ Stop the Zen Timer counting.
static void __LZTimerOff(
LZTimerObject *tm)
{
- // TODO: Stop the timer counting. Should be a macro if possible.
+ /* TODO: Stop the timer counting. Should be a macro if possible. */
}
/****************************************************************************
@@ -79,7 +79,7 @@ Compute the elapsed time in microseconds between start and end timings.
static ulong __LZTimerCount(
LZTimerObject *tm)
{
- // TODO: Compute the elapsed time and return it. Always microseconds.
+ /* TODO: Compute the elapsed time and return it. Always microseconds. */
return 0;
}
@@ -95,9 +95,9 @@ Read the Long Period timer from the OS
****************************************************************************/
static ulong __ULZReadTime(void)
{
- // TODO: Read the long period timer from the OS. The resolution of this
- // timer should be around 1/20 of a second for timing long
- // periods if possible.
+ /* TODO: Read the long period timer from the OS. The resolution of this */
+ /* timer should be around 1/20 of a second for timing long */
+ /* periods if possible. */
}
/****************************************************************************