|
马上注册,结交更多好友,享用更多功能,让你轻松玩转社区。
您需要 登录 才可以下载或查看,没有账号?注册
x
module data128x10(
addr,
clk,
dout);//synthesis black_box
input[2:0] addr;
input clk;
output [9:0] dout;
//synopsys translate_off
BLKMEMSP_V4_0 #(
3,//c_adde_width
"0",//c_default_data
8,//c_depth
0,//c_enable_rlocs
0,//c_has_default_data
0,//c_has_din
0,//c_has_en
0,//c_has_limit_data_pitch
0,//c_has_nd
0,//c_has_rdy
0,//c_has_rfd
0,//c_has_sinit
0,//c_has_we
18,//c_limit_data_pitch
"data128x10.mif",//c_mem_ini_file
0,//c_pipe_stages
0,//c_reg_inputs
"0",//c_sinit_value
10,//c_width
0,//c_write_mode
"0",//c_ybottom_addr
1,//c_yclk_is_rising
1,//c_yen_is_high
"hierarchy1",//c_yhierarchy
0,//c_ymake_bmm
"16kx1",//c_yprimitive_type
1,//c_ysinit_is_high
"1024",//c_ytop_addr
0,//c_yuse_single_primitive
1)//c_ywe_is_high
inst(
.ADDR(addr),
.CLK(clk),
.DOUT(dout)
.DIN(),
.EN(),
.ND(),
.RFD(),
.RDY(),
.SINIT(),
.WE());
endmodule
Error (10224): Verilog HDL syntax error at data128x10.v(52): experienced unexpected end-of-file -- translate_off synthesis directive must have matching translate_on synthesis directive
Error (10171): Verilog HDL syntax error at data128x10.v(52) near end of file ; expecting "endmodule" |
|