diff options
author | Michael Sevakis <jethead71@rockbox.org> | 2012-02-19 00:33:04 -0500 |
---|---|---|
committer | Michael Sevakis <jethead71@rockbox.org> | 2012-02-19 00:38:58 -0500 |
commit | 9a25a6fe19bc798bb7d90ec63e3c54bd8c2892cd (patch) | |
tree | 5df4f8da2de3340b685346c38981e877fa970589 /firmware/asm | |
parent | e5b1b0f998f9ac16dc4a5f6be73be535f22533e4 (diff) |
beep/mixer code: Code police a bit.
/firmware is in the #include path with makes #include "asm/beep.c" sufficient.
Add a comment to generic beep code and make another express intent better.
Change-Id: I587cd704478b894785927bdfe2e647e28614df62
Diffstat (limited to 'firmware/asm')
-rw-r--r-- | firmware/asm/beep.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/firmware/asm/beep.c b/firmware/asm/beep.c index 0314e32715..d430dff14d 100644 --- a/firmware/asm/beep.c +++ b/firmware/asm/beep.c @@ -24,6 +24,7 @@ #include "m68k/beep.c" #else /* Generic */ +/* Actually output samples into beep_buf */ static FORCE_INLINE void beep_generate(int16_t *out, int count, uint32_t *phase, uint32_t step, int16_t amplitude) |