diff options
Diffstat (limited to 'tools/specview.cc')
| -rw-r--r-- | tools/specview.cc | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/tools/specview.cc b/tools/specview.cc index d2ce914..699345f 100644 --- a/tools/specview.cc +++ b/tools/specview.cc @@ -1,4 +1,9 @@ +// This file is part of the 64k demo project. +// It implements the specview tool for visualizing spectrograms. +// Renders spectral data as ASCII art in the console. + #include <algorithm> // For std::max_element +#include <math.h> #include <stdio.h> #include <string.h> #include <vector> @@ -96,4 +101,4 @@ int main(int argc, char **argv) { } return 0; -} +}
\ No newline at end of file |
