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

module core_cp15_fsr
(
	input  logic     clk,
	                 rst_n,

	input  logic     load,
	                 transfer,
	input  cp_opcode op2,
	input  word      write,

	output word      read
);

	//TODO
	assign read = 0;

endmodule