Advertisement
aidanozo

Untitled

Nov 6th, 2024
107
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. module ram_reader #(
  2.     parameter p_data_width = 8,
  3.     parameter p_address_width = 20
  4. )(
  5.     output wire [(p_data_width-1) : 0] o_w_out,
  6.     input wire [(p_data_width-1) : 0] i_w_in,
  7.     input wire [(p_address_width-1) : 0] i_w_address,
  8.     input wire i_w_we,
  9.     input wire i_w_oe,
  10.     input wire i_w_clk
  11. );
  12.  
  13.     // Variabila de tip reg: l_r_data (vector de 2**p_adress_width elemente de dimensiunea unei date)
  14.  
  15.     // Bloc always edge-triggerd
  16.     // Logica scrierii in memorie
  17.  
  18.     // Asignarea continua pe iesiri
  19.  
  20. endmodule
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement