diff options
Diffstat (limited to 'test/ram-test.c')
-rw-r--r-- | test/ram-test.c | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/test/ram-test.c b/test/ram-test.c new file mode 100644 index 0000000..8ef0aa2 --- /dev/null +++ b/test/ram-test.c @@ -0,0 +1,6 @@ +#include <stdio.h> +int ram_contents[1024]; +int main(int argc, char * argv[]) { + printf("%s\n", ram_contents); + return 0; +} |