Advertisement
aidanozo

Untitled

Nov 6th, 2024
102
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. module register#(
  2.     parameter p_data_width = 8
  3. )(
  4.     output wire [(p_data_width - 1):0] o_w_out,
  5.     output wire [(p_data_width - 1):0] o_w_disp_out,
  6.     input wire i_w_clk,
  7.     input wire i_w_reset,
  8.     input wire [(p_data_width - 1):0] i_w_in,
  9.     input wire i_w_we,
  10.     input wire i_w_oe
  11. );
  12.  
  13.     // Variabila de tip reg: l_r_data
  14.  
  15.     /// Bloc always edge-triggered
  16.     // Logica scrierii in registru
  17.    
  18.     /// Asignarea continua pe iesiri
  19.     // Logica iesirii din registru
  20.    
  21. endmodule
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement