-
Notifications
You must be signed in to change notification settings - Fork 11
/
read_data_memory.v
47 lines (40 loc) · 1.09 KB
/
read_data_memory.v
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
// Datapath’teki data memory’e karşılık gelmektedir. ALU sonucunu address olarak, rt contentini ise write data olarak alır.
// Gelen sinyaller ile belirlenen işlemi yaptıktan sonra read data olarak output verir.
// Program ilk başladığında initial değerleri dosyadan çeker.
module read_data_memory(
output reg [31:0] read_data,
input [31:0] address,
write_data,
input [5:0] opcode,
input sig_mem_read,
sig_mem_write
);
reg [31:0] data_mem [255:0];
initial begin
$readmemb("data.mem", data_mem);
end
always @(address) begin
if(sig_mem_write) begin
if(opcode == 6'h28) begin
data_mem[address][7:0] = write_data[7:0];
end
else if(opcode == 6'h29) begin
data_mem[address][15:0] = write_data[15:0];
end
else begin
data_mem[address] = write_data;
end
// write to file
$writememb("data.mem", data_mem);
end
end
always @(address) begin
if(sig_mem_read) begin
read_data = data_mem[address];
end
end
// initial begin
// $monitor("yazılacak address: %32b, yazılacak bilgi: %32b\n",
// address, write_data);
// end
endmodule