⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 instruction_memory.v

📁 Use the verilog language write a MIPS CPU code, and have additional instruction, for example: select
💻 V
字号:
//=============================================================================
//Instruction memory Module: Memory size is 167 words of 8 bits ( 1 bite ) each
//	input [31:0] Read_address;
//	output [31:0] instruction;
//=============================================================================

module Instruction_memory( Read_address, instruction );
	input [31:0] Read_address;	//read address
	output [31:0] instruction;	//read data
	reg [31:0] instruction;
	reg [7:0] Mem [0:169];	//167 * 8 memory

	always @( Read_address )	
		begin
			instruction[31:0] = {Mem[Read_address+3],Mem[Read_address+2],Mem[Read_address+1],Mem[Read_address]};
		end
endmodule

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -