summaryrefslogtreecommitdiff
path: root/rtl/core/cp15/cache_lockdown.sv
blob: 65d4c0f22be4d089d2cae7c292e10d36c04033cf (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
`include "core/uarch.sv"

module core_cp15_cache_lockdown
(
	input  logic     clk,
	                 rst_n,

	input  logic     load,
	                 transfer,
	input  word      write,

	output word      read
);

	//TODO, aunque al parecer Linux no usa esto
	assign read = 0;

endmodule