|
Message
From: cvs at opencores.org<cvs@o...>
Date: Thu Jul 26 18:57:44 CEST 2007
Subject: [cvs-checkins] MODIFIED: dmt_tx ...
Date: 00/07/07 26:18:57 Added: dmt_tx/const_encoder/tb const_map_data.v Log: New file with expected constellation data. Revision Changes Path 1.1 dmt_tx/const_encoder/tb/const_map_data.v http://www.opencores.org/cvsweb.shtml/dmt_tx/const_encoder/tb/const_map_data.v?rev=1.1&content-type=text/x-cvsweb-markup Index: const_map_data.v =================================================================== module const_map_2bit; `include "parameters.vh" reg signed [CONSTW-1:0] re [0:3]; reg signed [CONSTW-1:0] im [0:3]; initial begin : init_2bit re[0] = 1; im[0] = 1; re[1] = 1; im[1] = -1; re[2] = -1; im[2] = 1; re[3] = -1; im[3] = -1; end endmodule
|