summaryrefslogtreecommitdiff
path: root/rtl/core/core_cp15_tlb_lockdown.sv
blob: 1972c332d36566ff4d4a8d58f2928ba5159b99da (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_tlb_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