Advertisement
Guest User

Untitled

a guest
May 9th, 2018
71
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1.  
  2. module InstructionMemory(
  3.     input wire [15:0] i_PC,
  4.     input wire i_CLOCKX,
  5.    
  6.     output wire [15:0] o_IMRADDR,
  7.     input wire [15:0] i_DATA,
  8.    
  9.     output reg [15:0] o_INSTRUCTION
  10. );
  11.  
  12. endmodule
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement