blob: cb241a1b34b0238a97de4914fc98f0b2fc4c4a85 [file] [log] [blame]
#include <stdio.h>
#include <string.h>
#define DEPTH (4*1024)
#define FRAME (1024)
static void test(int depth)
{
volatile char frame[FRAME];
memset((char *)frame, 0xff, sizeof(frame));
if (depth > 1)
test(depth-1);
}
int main()
{
test(DEPTH);
printf("PASSED\n");
return 0;
}