马上注册,结交更多好友,享用更多功能,让你轻松玩转社区。
您需要 登录 才可以下载或查看,没有账号?注册
x
下面这段代码是产生的异步ROM,在quartus中能实现吗,求大神
module scinstmem (a,inst);
input [31:0] a;
output[31:0] inst;
lpm_rom lpm_rom_component (.address(a[6:2]),
.q(inst));
defparam lpm_rom_component.lpm_width = 32,
lpm_rom_component.lpm_widthad = 5,
lpm_rom_component.lpm_numwords = "unused",
lpm_rom_component.lpm_file = "scinstmem.mif",
lpm_rom_component.lpm_indata = "unused",
lpm_rom_component.lpm_outdata = "unregistered",
lpm_rom_component.lpm_address_control = "unregistered";
endmodule |