whitespace.
[goodfet] / firmware / include / monitor.h
1 /*! \file monitor.h
2   \author Travis Goodspeed
3   \brief Debug monitor commands.
4 */
5
6 #include <signal.h>
7 #include <io.h>
8 #include <iomacros.h>
9
10 // Generic Commands
11
12 //! Overwrite all of RAM with 0xBEEF, then reboot.
13 void monitor_ram_pattern();
14 //! Return the number of contiguous bytes 0xBEEF, to measure RAM usage.
15 unsigned int monitor_ram_depth();
16