-
Notifications
You must be signed in to change notification settings - Fork 0
/
Memory.sv
50 lines (40 loc) · 1.15 KB
/
Memory.sv
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
48
49
50
/**
***********************************************
Instituto Tecnologico de Costa Rica
Ingenieria en Electronica
Memory
Autores: Esteban Aguero Perez
Michael Gonzalez Rivera
Daniela Hernandez Alvarado
Lenguaje: SystemVerilog
Version: 1.0
Ultima Modificacion: 26/09/2018
Entradas:- 4 operandos de entrada
- clock
- Dirección de almacenamiento/lectura del dato
- Dato a escribir
- Dato leido
Restricciones:
- Entradas son de N bits
Salidas: - Dato leido
Arquitectura de Computadores I 2018
Prof. Ronald Garcia
***********************************************
*/
module Memory #(parameter N = 32, M=77056) // 2^8 +240*320 = 77056 dura 10 minutos
(input logic clk, wr,
input logic [N-1:0] address, data_in,
output logic [N-1:0] data_out);
logic [N-1:0] mem [M];
initial begin
$readmemb("D:/ArquiI/ArquitecturaHybridARMIPS/ram.mem", mem); // cambiar ruta de cada uno
end
always_ff @(negedge clk) begin
if (wr == 1)
mem[address] <= data_in;
end
always_ff @(posedge clk) begin
if (wr == 0)
data_out <= mem[address];
end
endmodule