summaryrefslogtreecommitdiff
path: root/test_nops.c
blob: d7d4ab70e6ee13b199cbaa1d94f99c9cd21dd07b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
#include <stdio.h>

#include "fifo.h"

test_nops(void)
{
	int i;

	printf("--Test nops\n");

	for (i=0; i<0x300; i++) {
		OUT_RING(0);
	}

	fifo_print_getput();
	FIRE_RING();
	fifo_print_getput();
}