summaryrefslogtreecommitdiff
path: root/platform/wavelet3d/gfx_shake.sv
blob: baae0c357bb6a1edeb03da11e5157b9c1e69f68a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
interface gfx_shake;

	logic ready;
	logic valid;

	modport tx
	(
		input  ready,
		output valid
	);

	modport rx
	(
		input  valid,
		output ready
	);

	modport peek
	(
		input  ready,
		       valid
	);

endinterface