OpenCores
URL https://opencores.org/ocsvn/ethernet_tri_mode/ethernet_tri_mode/trunk

Subversion Repositories ethernet_tri_mode

Compare Revisions

  • This comparison shows the changes necessary to convert path
    /
    from Rev 18 to Rev 19
    Reverse comparison

Rev 18 → Rev 19

/trunk/rtl/verilog/RMON.v
39,6 → 39,9
// CVS Revision History
//
// $Log: not supported by cvs2svn $
// Revision 1.3 2006/01/19 14:07:53 maverickist
// verification is complete.
//
// Revision 1.2 2005/12/16 06:44:16 Administrator
// replaced tab with space.
// passed 9.6k length frame test.
168,10 → 171,10
//port-a for Rmon (//port-a for Rmon ),
.Addra (Addra ),
.Dina (Dina ),
.Douta (Douta ),
.Douta ( ),
.Wea (Wea ),
//port-b for CPU (//port-b for CPU ),
.Addrb (RxAddrb ),
.Doutb (RxDoutb ));
.Addrb (Addra ),
.Doutb (Douta ));
 
endmodule
/trunk/rtl/verilog/TECH/afifo.v File deleted \ No newline at end of file
/trunk/rtl/verilog/MAC_rx/MAC_rx_ctrl.v
39,6 → 39,9
// CVS Revision History
//
// $Log: not supported by cvs2svn $
// Revision 1.3 2006/01/19 14:07:54 maverickist
// verification is complete.
//
// Revision 1.3 2005/12/16 06:44:17 Administrator
// replaced tab with space.
// passed 9.6k length frame test.
162,6 → 165,8
reg CRC_en;
reg CRC_init;
reg Rx_apply_rmon;
reg Rx_apply_rmon_tmp;
reg Rx_apply_rmon_tmp_pl1;
reg [2:0] Rx_pkt_err_type_rmon;
reg MAC_add_en;
reg [2:0] Rx_pkt_type_rmon;
266,7 → 271,7
State_FFFullErrEnd:
Next_state =State_FFFullDrop;
State_IFG:
if (IFG_counter==RX_IFG_SET)
if (IFG_counter==RX_IFG_SET-4) //remove some additional time
Next_state =State_idle;
else
Next_state =Current_state;
333,7 → 338,7
else if (Current_state==State_SFD)
Frame_length_counter <=1;
else if (Current_state==State_data)
Frame_length_counter <=Frame_length_counter+ 1;
Frame_length_counter <=Frame_length_counter+ 1'b1;
always @ (Frame_length_counter or RX_MIN_LENGTH)
if (Frame_length_counter<RX_MIN_LENGTH)
347,15 → 352,30
else
Too_long =0;
assign Rx_pkt_length_rmon=Frame_length_counter;
assign Rx_pkt_length_rmon=Frame_length_counter-1'b1;
 
always @ (posedge Clk or posedge Reset)
if (Reset)
Rx_apply_rmon_tmp <=0;
else if (Current_state==State_OkEnd||Current_state==State_ErrEnd
||Current_state==State_CRCErrEnd||Current_state==State_FFFullErrEnd)
Rx_apply_rmon_tmp <=1;
else
Rx_apply_rmon_tmp <=0;
always @ (posedge Clk or posedge Reset)
if (Reset)
Rx_apply_rmon_tmp_pl1 <=0;
else
Rx_apply_rmon_tmp_pl1 <=Rx_apply_rmon_tmp;
 
always @ (posedge Clk or posedge Reset)
if (Reset)
Rx_apply_rmon <=0;
else if (Current_state==State_OkEnd||Current_state==State_ErrEnd
||Current_state==State_CRCErrEnd||Current_state==State_FFFullErrEnd)
Rx_apply_rmon <=1;
else
else if (Rx_apply_rmon_tmp_pl1)
Rx_apply_rmon <=0;
always @ (posedge Clk or posedge Reset)
/trunk/rtl/verilog/MAC_rx/MAC_rx_FF.v
39,6 → 39,9
// CVS Revision History
//
// $Log: not supported by cvs2svn $
// Revision 1.4 2006/05/28 05:09:20 maverickist
// no message
//
// Revision 1.3 2006/01/19 14:07:54 maverickist
// verification is complete.
//
136,7 → 139,11
reg Wr_en_tmp;
reg Wr_en_ptr;
wire[`MAC_TX_FF_DEPTH-1:0] Add_wr_pluse;
wire[`MAC_TX_FF_DEPTH-1:0] Add_wr_pluse4;
wire[`MAC_TX_FF_DEPTH-1:0] Add_wr_pluse3;
wire[`MAC_TX_FF_DEPTH-1:0] Add_wr_pluse2;
reg Full;
reg Almost_full;
reg Empty /* synthesis syn_keep=1 */;
reg [3:0] Current_state /* synthesis syn_keep=1 */;
reg [3:0] Next_state;
169,7 → 176,10
reg [35:0] Dout_dl1;
reg [4:0] Fifo_data_count;
reg Rx_mac_pa_tmp ;
 
reg Add_wr_jump_tmp ;
reg Add_wr_jump_tmp_pl1 ;
reg Add_wr_jump ;
reg Add_wr_jump_rd_pl1 ;
reg [4:0] Rx_Hwmark_pl ;
reg [4:0] Rx_Lwmark_pl ;
integer i ;
277,7 → 287,12
Add_rd_ungray[i] =Add_rd_ungray[i+1]^Add_rd_gray_dl1[i];
end
assign Add_wr_pluse=Add_wr+1;
assign Add_wr_pluse4=Add_wr+4;
assign Add_wr_pluse3=Add_wr+3;
assign Add_wr_pluse2=Add_wr+2;
 
 
always @ (posedge Clk_MAC or posedge Reset)
if (Reset)
Full <=0;
286,8 → 301,20
else
Full <=0;
 
assign Fifo_full =Full;
always @ (posedge Clk_MAC or posedge Reset)
if (Reset)
Almost_full <=0;
else if (Add_wr_pluse4==Add_rd_ungray||
Add_wr_pluse3==Add_rd_ungray||
Add_wr_pluse2==Add_rd_ungray||
Add_wr_pluse==Add_rd_ungray
)
Almost_full <=1;
else
Almost_full <=0;
 
assign Fifo_full =Almost_full;
 
//
always @ (posedge Clk_MAC or posedge Reset)
if (Reset)
297,6 → 324,28
else if (Wr_en&&!Full)
Add_wr <=Add_wr +1;
always @ (posedge Clk_MAC or posedge Reset)
if (Reset)
Add_wr_jump_tmp <=0;
else if (Current_state==State_err_end)
Add_wr_jump_tmp <=1;
else
Add_wr_jump_tmp <=0;
 
always @ (posedge Clk_MAC or posedge Reset)
if (Reset)
Add_wr_jump_tmp_pl1 <=0;
else
Add_wr_jump_tmp_pl1 <=Add_wr_jump_tmp;
always @ (posedge Clk_MAC or posedge Reset)
if (Reset)
Add_wr_jump <=0;
else if (Current_state==State_err_end)
Add_wr_jump <=1;
else if (Add_wr_jump_tmp_pl1)
Add_wr_jump <=0;
//
always @ (posedge Clk_MAC or posedge Reset)
if (Reset)
452,8 → 501,10
always @ (Current_state_SYS or Rx_mac_rd or Rx_mac_ra or Dout or Empty)
case (Current_state_SYS)
SYS_idle:
if (Rx_mac_rd&&Rx_mac_ra)
if (Rx_mac_rd&&Rx_mac_ra&&!Empty)
Next_state_SYS =SYS_read;
else if(Rx_mac_rd&&Rx_mac_ra&&Empty)
Next_state_SYS =FF_emtpy_err;
else
Next_state_SYS =Current_state_SYS;
SYS_read:
510,7 → 561,7
Packet_number_inFF <=0;
else if (Packet_number_add_edge&&!Packet_number_sub)
Packet_number_inFF <=Packet_number_inFF + 1;
else if (!Packet_number_add_edge&&Packet_number_sub)
else if (!Packet_number_add_edge&&Packet_number_sub&&Packet_number_inFF!=0)
Packet_number_inFF <=Packet_number_inFF - 1;
 
always @ (posedge Clk_SYS or posedge Reset)
567,8 → 618,14
always @ (posedge Clk_SYS or posedge Reset)
if (Reset)
Add_wr_jump_rd_pl1 <=0;
else
Add_wr_jump_rd_pl1 <=Add_wr_jump;
always @ (posedge Clk_SYS or posedge Reset)
if (Reset)
Add_wr_ungray =0;
else
else if (!Add_wr_jump_rd_pl1)
begin
Add_wr_ungray[`MAC_RX_FF_DEPTH-1] =Add_wr_gray_dl1[`MAC_RX_FF_DEPTH-1];
for (i=`MAC_RX_FF_DEPTH-2;i>=0;i=i-1)
/trunk/rtl/verilog/MAC_tx/MAC_tx_Ctrl.v
39,6 → 39,9
// CVS Revision History
//
// $Log: not supported by cvs2svn $
// Revision 1.3 2006/01/19 14:07:54 maverickist
// verification is complete.
//
// Revision 1.3 2005/12/16 06:44:17 Administrator
// replaced tab with space.
// passed 9.6k length frame test.
180,6 → 183,8
reg TxEn_tmp ;
reg [15:0] Tx_pkt_length_rmon ;
reg Tx_apply_rmon ;
reg Tx_apply_rmon_tmp ;
reg Tx_apply_rmon_tmp_pl1;
reg [2:0] Tx_pkt_err_type_rmon;
reg [3:0] RetryCnt ;
reg Random_init ;
206,7 → 211,6
reg pause_quanta_sub ;
reg pause_frame_send_en_dl1 ;
reg [15:0] pause_quanta_set_dl1 ;
reg [4:0] send_pause_frame_counter ;
reg xoff_gen_complete ;
reg xon_gen_complete ;
//******************************************************************************
230,14 → 234,6
 
always @(posedge Clk or posedge Reset)
if (Reset)
send_pause_frame_counter <=0;
else if(Current_state!=StateSendPauseFrame)
send_pause_frame_counter <=0;
else
send_pause_frame_counter <=send_pause_frame_counter +1;
 
always @(posedge Clk or posedge Reset)
if (Reset)
pause_counter <=0;
else if (Current_state!=StatePause)
pause_counter <=0;
247,9 → 243,9
always @(posedge Clk or posedge Reset)
if (Reset)
IPLengthCounter <=0;
else if (Current_state==StateSwitchNext)
else if (Current_state==StateDefer)
IPLengthCounter <=0;
else if (IPLengthCounter!=8'hff&&(Current_state==StateData||Current_state==StatePAD))
else if (IPLengthCounter!=8'hff&&(Current_state==StateData||Current_state==StateSendPauseFrame||Current_state==StatePAD))
IPLengthCounter <=IPLengthCounter+1;
 
always @(posedge Clk or posedge Reset)
276,7 → 272,7
StateIFG:
if (!FullDuplex&&CRS)
Next_state=StateDefer;
 
else if ((FullDuplex&&IFG_counter==IFGset-4)||(!FullDuplex&&!CRS&&IFG_counter==IFGset-4))//remove some additional time
Next_state=StateIdle;
else
Next_state=Current_state;
297,7 → 293,7
StatePreamble:
if (!FullDuplex&&Collision)
Next_state=StateJam;
else if ((FullDuplex&&Preamble_counter==7)||(!FullDuplex&&!Collision&&Preamble_counter==7))
else if ((FullDuplex&&Preamble_counter==6)||(!FullDuplex&&!Collision&&Preamble_counter==6))
Next_state=StateSFD;
else
Next_state=Current_state;
309,7 → 305,7
else
Next_state=StateData;
StateSendPauseFrame:
if (send_pause_frame_counter==19)
if (IPLengthCounter==17)
Next_state=StatePAD;
else
Next_state=Current_state;
346,8 → 342,6
StateFCS:
if (!FullDuplex&&Collision)
Next_state =StateJam;
else if (pause_frame_send_en_dl1&&(xoff_gen||xon_gen))
Next_state =StateDefer;
else if (CRC_end)
Next_state =StateSwitchNext;
else
421,7 → 415,7
assign Frame_data=TxD_tmp;
 
always @(Current_state)
if (Current_state==StateData||Current_state==StatePAD)
if (Current_state==StateData||Current_state==StateSendPauseFrame||Current_state==StatePAD)
Data_en =1;
else
Data_en =0;
483,22 → 477,26
else
TxD_tmp =Fifo_data;
StateSendPauseFrame:
if (Src_MAC_ptr)
if (Src_MAC_ptr&&MAC_tx_add_en)
TxD_tmp =MAC_tx_addr_data;
else
case (send_pause_frame_counter)
5'd0: TxD_tmp =8'h01;
5'd1: TxD_tmp =8'h80;
5'd2: TxD_tmp =8'hc2;
5'd3: TxD_tmp =8'h00;
5'd4: TxD_tmp =8'h00;
5'd5: TxD_tmp =8'h01;
5'd12: TxD_tmp =8'h88;//type
5'd13: TxD_tmp =8'h08;//
5'd14: TxD_tmp =8'h00;//opcode
5'd15: TxD_tmp =8'h01;
5'd16: TxD_tmp =pause_quanta_set_dl1[15:8];
5'd17: TxD_tmp =pause_quanta_set_dl1[7:0];
case (IPLengthCounter)
7'd0: TxD_tmp =8'h01;
7'd1: TxD_tmp =8'h80;
7'd2: TxD_tmp =8'hc2;
7'd3: TxD_tmp =8'h00;
7'd4: TxD_tmp =8'h00;
7'd5: TxD_tmp =8'h01;
7'd12: TxD_tmp =8'h88;//type
7'd13: TxD_tmp =8'h08;//
7'd14: TxD_tmp =8'h00;//opcode
7'd15: TxD_tmp =8'h01;
7'd16: TxD_tmp =xon_gen?8'b0:pause_quanta_set_dl1[15:8];
7'd17: TxD_tmp =xon_gen?8'b0:pause_quanta_set_dl1[7:0];
// 7'd60: TxD_tmp =8'h26;
// 7'd61: TxD_tmp =8'h6b;
// 7'd62: TxD_tmp =8'hae;
// 7'd63: TxD_tmp =8'h0a;
default:TxD_tmp =0;
endcase
530,17 → 528,33
Tx_pkt_length_rmon <=0;
else if (Current_state==StateSFD)
Tx_pkt_length_rmon <=0;
else if (Current_state==StateData)
else if (Current_state==StateData||Current_state==StateSendPauseFrame||Current_state==StatePAD||Current_state==StateFCS)
Tx_pkt_length_rmon <=Tx_pkt_length_rmon+1;
always @ (posedge Clk or posedge Reset)
if (Reset)
Tx_apply_rmon_tmp <=0;
else if ((Fifo_eop&&Current_state==StateJamDrop)||
(Fifo_eop&&Current_state==StateFFEmptyDrop)||
CRC_end)
Tx_apply_rmon_tmp <=1;
else
Tx_apply_rmon_tmp <=0;
 
always @ (posedge Clk or posedge Reset)
if (Reset)
Tx_apply_rmon_tmp_pl1 <=0;
else
Tx_apply_rmon_tmp_pl1 <=Tx_apply_rmon_tmp;
always @ (posedge Clk or posedge Reset)
if (Reset)
Tx_apply_rmon <=0;
else if ((Fifo_eop&&Current_state==StateJamDrop)||
(Fifo_eop&&Current_state==StateFFEmptyDrop)||
CRC_end)
Tx_apply_rmon <=1;
else
else if (Tx_apply_rmon_tmp_pl1)
Tx_apply_rmon <=0;
always @ (posedge Clk or posedge Reset)
553,13 → 567,13
else if(Fifo_eop&&Fifo_data_err_full)
Tx_pkt_err_type_rmon <=3'b011;//overflow
else if(CRC_end)
Tx_pkt_err_type_rmon <=3'b100;
Tx_pkt_err_type_rmon <=3'b100;//normal
always @ (posedge Clk or posedge Reset)
if (Reset)
MAC_header_slot_tmp <=0;
else if(Current_state==StateSFD&&Next_state==StateData)
MAC_header_slot_tmp <=0;
MAC_header_slot_tmp <=1;
else
MAC_header_slot_tmp <=0;
575,7 → 589,7
else if (Current_state==StateSendPauseFrame)
Tx_pkt_type_rmon <=3'b100;
else if(MAC_header_slot)
Tx_pkt_type_rmon <={1'b0,TxD_tmp};
Tx_pkt_type_rmon <={1'b0,TxD[7:6]};
 
always @(Tx_pkt_length_rmon)
/trunk/rtl/verilog/MAC_tx/MAC_tx_FF.v
39,6 → 39,9
// CVS Revision History
//
// $Log: not supported by cvs2svn $
// Revision 1.4 2006/05/28 05:09:20 maverickist
// no message
//
// Revision 1.3 2006/01/19 14:07:54 maverickist
// verification is complete.
//
195,6 → 198,10
reg Add_rd_reg_rdy_dl2 ;
reg [4:0] Tx_Hwmark_pl ;
reg [4:0] Tx_Lwmark_pl ;
reg Add_rd_jump_tmp ;
reg Add_rd_jump_tmp_pl1 ;
reg Add_rd_jump ;
reg Add_rd_jump_wr_pl1 ;
 
integer i ;
//******************************************************************************
313,8 → 320,14
always @ (posedge Clk_SYS or posedge Reset)
if (Reset)
Add_rd_jump_wr_pl1 <=0;
else
Add_rd_jump_wr_pl1 <=Add_rd_jump;
always @ (posedge Clk_SYS or posedge Reset)
if (Reset)
Add_rd_ungray =0;
else
else if (!Add_rd_jump_wr_pl1)
begin
Add_rd_ungray[`MAC_RX_FF_DEPTH-1] =Add_rd_gray_dl1[`MAC_RX_FF_DEPTH-1];
for (i=`MAC_RX_FF_DEPTH-2;i>=0;i=i-1)
675,6 → 688,28
else if (Add_rd_add)
Add_rd <= Add_rd + 1;
always @ (posedge Clk_MAC or posedge Reset)
if (Reset)
Add_rd_jump_tmp <=0;
else if (Current_state_MAC==MAC_retry)
Add_rd_jump_tmp <=1;
else
Add_rd_jump_tmp <=0;
 
always @ (posedge Clk_MAC or posedge Reset)
if (Reset)
Add_rd_jump_tmp_pl1 <=0;
else
Add_rd_jump_tmp_pl1 <=Add_rd_jump_tmp;
always @ (posedge Clk_MAC or posedge Reset)
if (Reset)
Add_rd_jump <=0;
else if (Current_state_MAC==MAC_retry)
Add_rd_jump <=1;
else if (Add_rd_jump_tmp_pl1)
Add_rd_jump <=0;
//gen Fifo_data
 
/trunk/rtl/verilog/RMON/RMON_addr_gen.v
39,6 → 39,9
// CVS Revision History
//
// $Log: not supported by cvs2svn $
// Revision 1.3 2006/01/19 14:07:55 maverickist
// verification is complete.
//
// Revision 1.2 2005/12/16 06:44:19 Administrator
// replaced tab with space.
// passed 9.6k length frame test.
80,14 → 83,14
//******************************************************************************
//internal signals
//******************************************************************************
parameter StateIdle =5'b00001;
parameter StatePktLength =5'b00010;
parameter StatePktNumber =5'b00100;
parameter StatePktType =5'b01000;
parameter StatePktRange =5'b10000;
parameter StateIdle =4'd0;
parameter StatePktLength =4'd1;
parameter StatePktNumber =4'd2;
parameter StatePktType =4'd3;
parameter StatePktRange =4'd4;
 
reg [4:0] CurrentState;
reg [4:0] NextState;
reg [3:0] CurrentState /* synthesys syn_keep=1 */;
reg [3:0] NextState;
reg [2:0] PktTypeReg ;
reg [15:0] PktLengthReg ;
/trunk/rtl/verilog/RMON/RMON_ctrl.v
39,6 → 39,9
// CVS Revision History
//
// $Log: not supported by cvs2svn $
// Revision 1.3 2006/01/19 14:07:55 maverickist
// verification is complete.
//
// Revision 1.2 2005/12/16 06:44:19 Administrator
// replaced tab with space.
// passed 9.6k length frame test.
100,14 → 103,14
//internal signals
//******************************************************************************
 
parameter StateCPU =5'd00;
parameter StateMAC0 =5'd01;
parameter StateMAC1 =5'd02;
parameter StateCPU =4'd00;
parameter StateMAC0 =4'd01;
parameter StateMAC1 =4'd02;
 
 
reg [4:0] CurrentState;
reg [4:0] NextState;
reg [4:0] CurrentState_reg;
reg [3:0] CurrentState /* synthesys syn_keep=1 */;
reg [3:0] NextState;
reg [3:0] CurrentState_reg;
 
reg [4:0] StepCounter;
reg [31:0] DoutaReg;
/trunk/rtl/verilog/reg_int.v
62,11 → 62,11
input UpdateMIIRX_DATAReg ,// Updates MII RX_DATA register with read data
);
 
RegCPUData U_0_000(Tx_Hwmark ,7'd000,16'h001e,Reset,Clk_reg,!WRB,CSB,CA,CD_in);
RegCPUData U_0_001(Tx_Lwmark ,7'd001,16'h0019,Reset,Clk_reg,!WRB,CSB,CA,CD_in);
RegCPUData U_0_000(Tx_Hwmark ,7'd000,16'h0009,Reset,Clk_reg,!WRB,CSB,CA,CD_in);
RegCPUData U_0_001(Tx_Lwmark ,7'd001,16'h0008,Reset,Clk_reg,!WRB,CSB,CA,CD_in);
RegCPUData U_0_002(pause_frame_send_en ,7'd002,16'h0000,Reset,Clk_reg,!WRB,CSB,CA,CD_in);
RegCPUData U_0_003(pause_quanta_set ,7'd003,16'h0000,Reset,Clk_reg,!WRB,CSB,CA,CD_in);
RegCPUData U_0_004(IFGset ,7'd004,16'h001e,Reset,Clk_reg,!WRB,CSB,CA,CD_in);
RegCPUData U_0_004(IFGset ,7'd004,16'h000c,Reset,Clk_reg,!WRB,CSB,CA,CD_in);
RegCPUData U_0_005(FullDuplex ,7'd005,16'h0001,Reset,Clk_reg,!WRB,CSB,CA,CD_in);
RegCPUData U_0_006(MaxRetry ,7'd006,16'h0002,Reset,Clk_reg,!WRB,CSB,CA,CD_in);
RegCPUData U_0_007(MAC_tx_add_en ,7'd007,16'h0000,Reset,Clk_reg,!WRB,CSB,CA,CD_in);
87,7 → 87,7
RegCPUData U_0_022(Rx_Hwmark ,7'd022,16'h001a,Reset,Clk_reg,!WRB,CSB,CA,CD_in);
RegCPUData U_0_023(Rx_Lwmark ,7'd023,16'h0010,Reset,Clk_reg,!WRB,CSB,CA,CD_in);
RegCPUData U_0_024(CRC_chk_en ,7'd024,16'h0000,Reset,Clk_reg,!WRB,CSB,CA,CD_in);
RegCPUData U_0_025(RX_IFG_SET ,7'd025,16'h001e,Reset,Clk_reg,!WRB,CSB,CA,CD_in);
RegCPUData U_0_025(RX_IFG_SET ,7'd025,16'h000c,Reset,Clk_reg,!WRB,CSB,CA,CD_in);
RegCPUData U_0_026(RX_MAX_LENGTH ,7'd026,16'h2710,Reset,Clk_reg,!WRB,CSB,CA,CD_in);
RegCPUData U_0_027(RX_MIN_LENGTH ,7'd027,16'h0040,Reset,Clk_reg,!WRB,CSB,CA,CD_in);
RegCPUData U_0_028(CPU_rd_addr ,7'd028,16'h0000,Reset,Clk_reg,!WRB,CSB,CA,CD_in);
94,49 → 94,54
RegCPUData U_0_029(CPU_rd_apply ,7'd029,16'h0000,Reset,Clk_reg,!WRB,CSB,CA,CD_in);
// RegCPUData U_0_030(CPU_rd_grant ,7'd030,16'h0000,Reset,Clk_reg,!WRB,CSB,CA,CD_in);
// RegCPUData U_0_031(CPU_rd_dout_l ,7'd031,16'h0000,Reset,Clk_reg,!WRB,CSB,CA,CD_in);
// RegCPUData U_0_032(CPU_rd_dout_h ,7'd033,16'h0000,Reset,Clk_reg,!WRB,CSB,CA,CD_in);
RegCPUData U_0_033(Line_loop_en ,7'd034,16'h0000,Reset,Clk_reg,!WRB,CSB,CA,CD_in);
RegCPUData U_0_034(Speed ,7'd035,16'h0004,Reset,Clk_reg,!WRB,CSB,CA,CD_in);
// RegCPUData U_0_032(CPU_rd_dout_h ,7'd032,16'h0000,Reset,Clk_reg,!WRB,CSB,CA,CD_in);
RegCPUData U_0_033(Line_loop_en ,7'd033,16'h0000,Reset,Clk_reg,!WRB,CSB,CA,CD_in);
RegCPUData U_0_034(Speed ,7'd034,16'h0004,Reset,Clk_reg,!WRB,CSB,CA,CD_in);
 
always @ (*)
always @ (posedge Clk_reg or posedge Reset)
if (Reset)
CD_out <=0;
else if (!CSB&&WRB)
case (CA[7:1])
7'd00: CD_out=Tx_Hwmark ;
7'd01: CD_out=Tx_Lwmark ;
7'd02: CD_out=pause_frame_send_en ;
7'd03: CD_out=pause_quanta_set ;
7'd04: CD_out=IFGset ;
7'd05: CD_out=FullDuplex ;
7'd06: CD_out=MaxRetry ;
7'd07: CD_out=MAC_tx_add_en ;
7'd08: CD_out=MAC_tx_add_prom_data ;
7'd09: CD_out=MAC_tx_add_prom_add ;
7'd10: CD_out=MAC_tx_add_prom_wr ;
7'd11: CD_out=tx_pause_en ;
7'd12: CD_out=xoff_cpu ;
7'd13: CD_out=xon_cpu ;
7'd14: CD_out=MAC_rx_add_chk_en ;
7'd15: CD_out=MAC_rx_add_prom_data ;
7'd16: CD_out=MAC_rx_add_prom_add ;
7'd17: CD_out=MAC_rx_add_prom_wr ;
7'd18: CD_out=broadcast_filter_en ;
7'd19: CD_out=broadcast_bucket_depth ;
7'd20: CD_out=broadcast_bucket_interval ;
7'd21: CD_out=RX_APPEND_CRC ;
7'd22: CD_out=Rx_Hwmark ;
7'd23: CD_out=Rx_Lwmark ;
7'd24: CD_out=CRC_chk_en ;
7'd25: CD_out=RX_IFG_SET ;
7'd26: CD_out=RX_MAX_LENGTH ;
7'd27: CD_out=RX_MIN_LENGTH ;
7'd28: CD_out=CPU_rd_addr ;
7'd29: CD_out=CPU_rd_apply ;
7'd30: CD_out=CPU_rd_grant ;
7'd31: CD_out=CPU_rd_dout[15:0] ;
7'd32: CD_out=CPU_rd_dout[31:16] ;
7'd33: CD_out=Line_loop_en ;
7'd34: CD_out=Speed ;
default: CD_out=0 ;
7'd00: CD_out<=Tx_Hwmark ;
7'd01: CD_out<=Tx_Lwmark ;
7'd02: CD_out<=pause_frame_send_en ;
7'd03: CD_out<=pause_quanta_set ;
7'd04: CD_out<=IFGset ;
7'd05: CD_out<=FullDuplex ;
7'd06: CD_out<=MaxRetry ;
7'd07: CD_out<=MAC_tx_add_en ;
7'd08: CD_out<=MAC_tx_add_prom_data ;
7'd09: CD_out<=MAC_tx_add_prom_add ;
7'd10: CD_out<=MAC_tx_add_prom_wr ;
7'd11: CD_out<=tx_pause_en ;
7'd12: CD_out<=xoff_cpu ;
7'd13: CD_out<=xon_cpu ;
7'd14: CD_out<=MAC_rx_add_chk_en ;
7'd15: CD_out<=MAC_rx_add_prom_data ;
7'd16: CD_out<=MAC_rx_add_prom_add ;
7'd17: CD_out<=MAC_rx_add_prom_wr ;
7'd18: CD_out<=broadcast_filter_en ;
7'd19: CD_out<=broadcast_bucket_depth ;
7'd20: CD_out<=broadcast_bucket_interval ;
7'd21: CD_out<=RX_APPEND_CRC ;
7'd22: CD_out<=Rx_Hwmark ;
7'd23: CD_out<=Rx_Lwmark ;
7'd24: CD_out<=CRC_chk_en ;
7'd25: CD_out<=RX_IFG_SET ;
7'd26: CD_out<=RX_MAX_LENGTH ;
7'd27: CD_out<=RX_MIN_LENGTH ;
7'd28: CD_out<=CPU_rd_addr ;
7'd29: CD_out<=CPU_rd_apply ;
7'd30: CD_out<=CPU_rd_grant ;
7'd31: CD_out<=CPU_rd_dout[15:0] ;
7'd32: CD_out<=CPU_rd_dout[31:16] ;
7'd33: CD_out<=Line_loop_en ;
7'd34: CD_out<=Speed ;
default: CD_out<=0 ;
endcase
else
CD_out<=0 ;
 
endmodule
 
/trunk/sim/rtl_sim/ncsim_sim/log/ncsim.log
16,7 → 16,1457
the NO. 0002 IP Length is:0047 CRC-32check OK!
the NO. 0003 IP Length is:0048 CRC-32check OK!
the NO. 0004 IP Length is:0049 CRC-32check OK!
the NO. ffff IP Length is:0050 CRC-32check OK!
the NO. 0005 IP Length is:0050 CRC-32check OK!
the NO. 0006 IP Length is:0051 CRC-32check OK!
the NO. 0007 IP Length is:0052 CRC-32check OK!
the NO. 0008 IP Length is:0053 CRC-32check OK!
the NO. 0009 IP Length is:0054 CRC-32check OK!
the NO. 000a IP Length is:0055 CRC-32check OK!
the NO. 000b IP Length is:0056 CRC-32check OK!
the NO. 000c IP Length is:0057 CRC-32check OK!
the NO. 000d IP Length is:0058 CRC-32check OK!
the NO. 000e IP Length is:0059 CRC-32check OK!
the NO. 000f IP Length is:0060 CRC-32check OK!
the NO. 0010 IP Length is:0061 CRC-32check OK!
the NO. 0011 IP Length is:0062 CRC-32check OK!
the NO. 0012 IP Length is:0063 CRC-32check OK!
the NO. 0013 IP Length is:0064 CRC-32check OK!
the NO. 0014 IP Length is:0065 CRC-32check OK!
the NO. 0015 IP Length is:0066 CRC-32check OK!
the NO. 0016 IP Length is:0067 CRC-32check OK!
the NO. 0017 IP Length is:0068 CRC-32check OK!
the NO. 0018 IP Length is:0069 CRC-32check OK!
the NO. 0019 IP Length is:0070 CRC-32check OK!
the NO. 001a IP Length is:0071 CRC-32check OK!
the NO. 001b IP Length is:0072 CRC-32check OK!
the NO. 001c IP Length is:0073 CRC-32check OK!
the NO. 001d IP Length is:0074 CRC-32check OK!
the NO. 001e IP Length is:0075 CRC-32check OK!
the NO. 001f IP Length is:0076 CRC-32check OK!
the NO. 0020 IP Length is:0077 CRC-32check OK!
the NO. 0021 IP Length is:0078 CRC-32check OK!
the NO. 0022 IP Length is:0079 CRC-32check OK!
the NO. 0023 IP Length is:0080 CRC-32check OK!
the NO. 0024 IP Length is:0081 CRC-32check OK!
the NO. 0025 IP Length is:0082 CRC-32check OK!
the NO. 0026 IP Length is:0083 CRC-32check OK!
the NO. 0027 IP Length is:0084 CRC-32check OK!
the NO. 0028 IP Length is:0085 CRC-32check OK!
the NO. 0029 IP Length is:0086 CRC-32check OK!
the NO. 002a IP Length is:0087 CRC-32check OK!
the NO. 002b IP Length is:0088 CRC-32check OK!
the NO. 002c IP Length is:0089 CRC-32check OK!
the NO. 002d IP Length is:0090 CRC-32check OK!
the NO. 002e IP Length is:0091 CRC-32check OK!
the NO. 002f IP Length is:0092 CRC-32check OK!
the NO. 0030 IP Length is:0093 CRC-32check OK!
the NO. 0031 IP Length is:0094 CRC-32check OK!
the NO. 0032 IP Length is:0095 CRC-32check OK!
the NO. 0033 IP Length is:0096 CRC-32check OK!
the NO. 0034 IP Length is:0097 CRC-32check OK!
the NO. 0035 IP Length is:0098 CRC-32check OK!
the NO. 0036 IP Length is:0099 CRC-32check OK!
the NO. 0037 IP Length is:0100 CRC-32check OK!
the NO. 0038 IP Length is:0101 CRC-32check OK!
the NO. 0039 IP Length is:0102 CRC-32check OK!
the NO. 003a IP Length is:0103 CRC-32check OK!
the NO. 003b IP Length is:0104 CRC-32check OK!
the NO. 003c IP Length is:0105 CRC-32check OK!
the NO. 003d IP Length is:0106 CRC-32check OK!
the NO. 003e IP Length is:0107 CRC-32check OK!
the NO. 003f IP Length is:0108 CRC-32check OK!
the NO. 0040 IP Length is:0109 CRC-32check OK!
the NO. 0041 IP Length is:0110 CRC-32check OK!
the NO. 0042 IP Length is:0111 CRC-32check OK!
the NO. 0043 IP Length is:0112 CRC-32check OK!
the NO. 0044 IP Length is:0113 CRC-32check OK!
the NO. 0045 IP Length is:0114 CRC-32check OK!
the NO. 0046 IP Length is:0115 CRC-32check OK!
the NO. 0047 IP Length is:0116 CRC-32check OK!
the NO. 0048 IP Length is:0117 CRC-32check OK!
the NO. 0049 IP Length is:0118 CRC-32check OK!
the NO. 004a IP Length is:0119 CRC-32check OK!
the NO. 004b IP Length is:0120 CRC-32check OK!
the NO. 004c IP Length is:0121 CRC-32check OK!
the NO. 004d IP Length is:0122 CRC-32check OK!
the NO. 004e IP Length is:0123 CRC-32check OK!
the NO. 004f IP Length is:0124 CRC-32check OK!
the NO. 0050 IP Length is:0125 CRC-32check OK!
the NO. 0051 IP Length is:0126 CRC-32check OK!
the NO. 0052 IP Length is:0127 CRC-32check OK!
the NO. 0053 IP Length is:0128 CRC-32check OK!
the NO. 0054 IP Length is:0129 CRC-32check OK!
the NO. 0055 IP Length is:0130 CRC-32check OK!
the NO. 0056 IP Length is:0131 CRC-32check OK!
the NO. 0057 IP Length is:0132 CRC-32check OK!
the NO. 0058 IP Length is:0133 CRC-32check OK!
the NO. 0059 IP Length is:0134 CRC-32check OK!
the NO. 005a IP Length is:0135 CRC-32check OK!
the NO. 005b IP Length is:0136 CRC-32check OK!
the NO. 005c IP Length is:0137 CRC-32check OK!
the NO. 005d IP Length is:0138 CRC-32check OK!
the NO. 005e IP Length is:0139 CRC-32check OK!
the NO. 005f IP Length is:0140 CRC-32check OK!
the NO. 0060 IP Length is:0141 CRC-32check OK!
the NO. 0061 IP Length is:0142 CRC-32check OK!
the NO. 0062 IP Length is:0143 CRC-32check OK!
the NO. 0063 IP Length is:0144 CRC-32check OK!
the NO. 0064 IP Length is:0145 CRC-32check OK!
the NO. 0065 IP Length is:0146 CRC-32check OK!
the NO. 0066 IP Length is:0147 CRC-32check OK!
the NO. 0067 IP Length is:0148 CRC-32check OK!
the NO. 0068 IP Length is:0149 CRC-32check OK!
the NO. 0069 IP Length is:0150 CRC-32check OK!
the NO. 006a IP Length is:0151 CRC-32check OK!
the NO. 006b IP Length is:0152 CRC-32check OK!
the NO. 006c IP Length is:0153 CRC-32check OK!
the NO. 006d IP Length is:0154 CRC-32check OK!
the NO. 006e IP Length is:0155 CRC-32check OK!
the NO. 006f IP Length is:0156 CRC-32check OK!
the NO. 0070 IP Length is:0157 CRC-32check OK!
the NO. 0071 IP Length is:0158 CRC-32check OK!
the NO. 0072 IP Length is:0159 CRC-32check OK!
the NO. 0073 IP Length is:0160 CRC-32check OK!
the NO. 0074 IP Length is:0161 CRC-32check OK!
the NO. 0075 IP Length is:0162 CRC-32check OK!
the NO. 0076 IP Length is:0163 CRC-32check OK!
the NO. 0077 IP Length is:0164 CRC-32check OK!
the NO. 0078 IP Length is:0165 CRC-32check OK!
the NO. 0079 IP Length is:0166 CRC-32check OK!
the NO. 007a IP Length is:0167 CRC-32check OK!
the NO. 007b IP Length is:0168 CRC-32check OK!
the NO. 007c IP Length is:0169 CRC-32check OK!
the NO. 007d IP Length is:0170 CRC-32check OK!
the NO. 007e IP Length is:0171 CRC-32check OK!
the NO. 007f IP Length is:0172 CRC-32check OK!
the NO. 0080 IP Length is:0173 CRC-32check OK!
the NO. 0081 IP Length is:0174 CRC-32check OK!
the NO. 0082 IP Length is:0175 CRC-32check OK!
the NO. 0083 IP Length is:0176 CRC-32check OK!
the NO. 0084 IP Length is:0177 CRC-32check OK!
the NO. 0085 IP Length is:0178 CRC-32check OK!
the NO. 0086 IP Length is:0179 CRC-32check OK!
the NO. 0087 IP Length is:0180 CRC-32check OK!
the NO. 0088 IP Length is:0181 CRC-32check OK!
the NO. 0089 IP Length is:0182 CRC-32check OK!
the NO. 008a IP Length is:0183 CRC-32check OK!
the NO. 008b IP Length is:0184 CRC-32check OK!
the NO. 008c IP Length is:0185 CRC-32check OK!
the NO. 008d IP Length is:0186 CRC-32check OK!
the NO. 008e IP Length is:0187 CRC-32check OK!
the NO. 008f IP Length is:0188 CRC-32check OK!
the NO. 0090 IP Length is:0189 CRC-32check OK!
the NO. 0091 IP Length is:0190 CRC-32check OK!
the NO. 0092 IP Length is:0191 CRC-32check OK!
the NO. 0093 IP Length is:0192 CRC-32check OK!
the NO. 0094 IP Length is:0193 CRC-32check OK!
the NO. 0095 IP Length is:0194 CRC-32check OK!
the NO. 0096 IP Length is:0195 CRC-32check OK!
the NO. 0097 IP Length is:0196 CRC-32check OK!
the NO. 0098 IP Length is:0197 CRC-32check OK!
the NO. 0099 IP Length is:0198 CRC-32check OK!
the NO. 009a IP Length is:0199 CRC-32check OK!
the NO. 009b IP Length is:0200 CRC-32check OK!
the NO. 009c IP Length is:0201 CRC-32check OK!
the NO. 009d IP Length is:0202 CRC-32check OK!
the NO. 009e IP Length is:0203 CRC-32check OK!
the NO. 009f IP Length is:0204 CRC-32check OK!
the NO. 00a0 IP Length is:0205 CRC-32check OK!
the NO. 00a1 IP Length is:0206 CRC-32check OK!
the NO. 00a2 IP Length is:0207 CRC-32check OK!
the NO. 00a3 IP Length is:0208 CRC-32check OK!
the NO. 00a4 IP Length is:0209 CRC-32check OK!
the NO. 00a5 IP Length is:0210 CRC-32check OK!
the NO. 00a6 IP Length is:0211 CRC-32check OK!
the NO. 00a7 IP Length is:0212 CRC-32check OK!
the NO. 00a8 IP Length is:0213 CRC-32check OK!
the NO. 00a9 IP Length is:0214 CRC-32check OK!
the NO. 00aa IP Length is:0215 CRC-32check OK!
the NO. 00ab IP Length is:0216 CRC-32check OK!
the NO. 00ac IP Length is:0217 CRC-32check OK!
the NO. 00ad IP Length is:0218 CRC-32check OK!
the NO. 00ae IP Length is:0219 CRC-32check OK!
the NO. 00af IP Length is:0220 CRC-32check OK!
the NO. 00b0 IP Length is:0221 CRC-32check OK!
the NO. 00b1 IP Length is:0222 CRC-32check OK!
the NO. 00b2 IP Length is:0223 CRC-32check OK!
the NO. 00b3 IP Length is:0224 CRC-32check OK!
the NO. 00b4 IP Length is:0225 CRC-32check OK!
the NO. 00b5 IP Length is:0226 CRC-32check OK!
the NO. 00b6 IP Length is:0227 CRC-32check OK!
the NO. 00b7 IP Length is:0228 CRC-32check OK!
the NO. 00b8 IP Length is:0229 CRC-32check OK!
the NO. 00b9 IP Length is:0230 CRC-32check OK!
the NO. 00ba IP Length is:0231 CRC-32check OK!
the NO. 00bb IP Length is:0232 CRC-32check OK!
the NO. 00bc IP Length is:0233 CRC-32check OK!
the NO. 00bd IP Length is:0234 CRC-32check OK!
the NO. 00be IP Length is:0235 CRC-32check OK!
the NO. 00bf IP Length is:0236 CRC-32check OK!
the NO. 00c0 IP Length is:0237 CRC-32check OK!
the NO. 00c1 IP Length is:0238 CRC-32check OK!
the NO. 00c2 IP Length is:0239 CRC-32check OK!
the NO. 00c3 IP Length is:0240 CRC-32check OK!
the NO. 00c4 IP Length is:0241 CRC-32check OK!
the NO. 00c5 IP Length is:0242 CRC-32check OK!
the NO. 00c6 IP Length is:0243 CRC-32check OK!
the NO. 00c7 IP Length is:0244 CRC-32check OK!
the NO. 00c8 IP Length is:0245 CRC-32check OK!
the NO. 00c9 IP Length is:0246 CRC-32check OK!
the NO. 00ca IP Length is:0247 CRC-32check OK!
the NO. 00cb IP Length is:0248 CRC-32check OK!
the NO. 00cc IP Length is:0249 CRC-32check OK!
the NO. 00cd IP Length is:0250 CRC-32check OK!
the NO. 00ce IP Length is:0251 CRC-32check OK!
the NO. 00cf IP Length is:0252 CRC-32check OK!
the NO. 00d0 IP Length is:0253 CRC-32check OK!
the NO. 00d1 IP Length is:0254 CRC-32check OK!
the NO. 00d2 IP Length is:0255 CRC-32check OK!
the NO. 00d3 IP Length is:0256 CRC-32check OK!
the NO. 00d4 IP Length is:0257 CRC-32check OK!
the NO. 00d5 IP Length is:0258 CRC-32check OK!
the NO. 00d6 IP Length is:0259 CRC-32check OK!
the NO. 00d7 IP Length is:0260 CRC-32check OK!
the NO. 00d8 IP Length is:0261 CRC-32check OK!
the NO. 00d9 IP Length is:0262 CRC-32check OK!
the NO. 00da IP Length is:0263 CRC-32check OK!
the NO. 00db IP Length is:0264 CRC-32check OK!
the NO. 00dc IP Length is:0265 CRC-32check OK!
the NO. 00dd IP Length is:0266 CRC-32check OK!
the NO. 00de IP Length is:0267 CRC-32check OK!
the NO. 00df IP Length is:0268 CRC-32check OK!
the NO. 00e0 IP Length is:0269 CRC-32check OK!
the NO. 00e1 IP Length is:0270 CRC-32check OK!
the NO. 00e2 IP Length is:0271 CRC-32check OK!
the NO. 00e3 IP Length is:0272 CRC-32check OK!
the NO. 00e4 IP Length is:0273 CRC-32check OK!
the NO. 00e5 IP Length is:0274 CRC-32check OK!
the NO. 00e6 IP Length is:0275 CRC-32check OK!
the NO. 00e7 IP Length is:0276 CRC-32check OK!
the NO. 00e8 IP Length is:0277 CRC-32check OK!
the NO. 00e9 IP Length is:0278 CRC-32check OK!
the NO. 00ea IP Length is:0279 CRC-32check OK!
the NO. 00eb IP Length is:0280 CRC-32check OK!
the NO. 00ec IP Length is:0281 CRC-32check OK!
the NO. 00ed IP Length is:0282 CRC-32check OK!
the NO. 00ee IP Length is:0283 CRC-32check OK!
the NO. 00ef IP Length is:0284 CRC-32check OK!
the NO. 00f0 IP Length is:0285 CRC-32check OK!
the NO. 00f1 IP Length is:0286 CRC-32check OK!
the NO. 00f2 IP Length is:0287 CRC-32check OK!
the NO. 00f3 IP Length is:0288 CRC-32check OK!
the NO. 00f4 IP Length is:0289 CRC-32check OK!
the NO. 00f5 IP Length is:0290 CRC-32check OK!
the NO. 00f6 IP Length is:0291 CRC-32check OK!
the NO. 00f7 IP Length is:0292 CRC-32check OK!
the NO. 00f8 IP Length is:0293 CRC-32check OK!
the NO. 00f9 IP Length is:0294 CRC-32check OK!
the NO. 00fa IP Length is:0295 CRC-32check OK!
the NO. 00fb IP Length is:0296 CRC-32check OK!
the NO. 00fc IP Length is:0297 CRC-32check OK!
the NO. 00fd IP Length is:0298 CRC-32check OK!
the NO. 00fe IP Length is:0299 CRC-32check OK!
the NO. 00ff IP Length is:0300 CRC-32check OK!
the NO. 0100 IP Length is:0301 CRC-32check OK!
the NO. 0101 IP Length is:0302 CRC-32check OK!
the NO. 0102 IP Length is:0303 CRC-32check OK!
the NO. 0103 IP Length is:0304 CRC-32check OK!
the NO. 0104 IP Length is:0305 CRC-32check OK!
the NO. 0105 IP Length is:0306 CRC-32check OK!
the NO. 0106 IP Length is:0307 CRC-32check OK!
the NO. 0107 IP Length is:0308 CRC-32check OK!
the NO. 0108 IP Length is:0309 CRC-32check OK!
the NO. 0109 IP Length is:0310 CRC-32check OK!
the NO. 010a IP Length is:0311 CRC-32check OK!
the NO. 010b IP Length is:0312 CRC-32check OK!
the NO. 010c IP Length is:0313 CRC-32check OK!
the NO. 010d IP Length is:0314 CRC-32check OK!
the NO. 010e IP Length is:0315 CRC-32check OK!
the NO. 010f IP Length is:0316 CRC-32check OK!
the NO. 0110 IP Length is:0317 CRC-32check OK!
the NO. 0111 IP Length is:0318 CRC-32check OK!
the NO. 0112 IP Length is:0319 CRC-32check OK!
the NO. 0113 IP Length is:0320 CRC-32check OK!
the NO. 0114 IP Length is:0321 CRC-32check OK!
the NO. 0115 IP Length is:0322 CRC-32check OK!
the NO. 0116 IP Length is:0323 CRC-32check OK!
the NO. 0117 IP Length is:0324 CRC-32check OK!
the NO. 0118 IP Length is:0325 CRC-32check OK!
the NO. 0119 IP Length is:0326 CRC-32check OK!
the NO. 011a IP Length is:0327 CRC-32check OK!
the NO. 011b IP Length is:0328 CRC-32check OK!
the NO. 011c IP Length is:0329 CRC-32check OK!
the NO. 011d IP Length is:0330 CRC-32check OK!
the NO. 011e IP Length is:0331 CRC-32check OK!
the NO. 011f IP Length is:0332 CRC-32check OK!
the NO. 0120 IP Length is:0333 CRC-32check OK!
the NO. 0121 IP Length is:0334 CRC-32check OK!
the NO. 0122 IP Length is:0335 CRC-32check OK!
the NO. 0123 IP Length is:0336 CRC-32check OK!
the NO. 0124 IP Length is:0337 CRC-32check OK!
the NO. 0125 IP Length is:0338 CRC-32check OK!
the NO. 0126 IP Length is:0339 CRC-32check OK!
the NO. 0127 IP Length is:0340 CRC-32check OK!
the NO. 0128 IP Length is:0341 CRC-32check OK!
the NO. 0129 IP Length is:0342 CRC-32check OK!
the NO. 012a IP Length is:0343 CRC-32check OK!
the NO. 012b IP Length is:0344 CRC-32check OK!
the NO. 012c IP Length is:0345 CRC-32check OK!
the NO. 012d IP Length is:0346 CRC-32check OK!
the NO. 012e IP Length is:0347 CRC-32check OK!
the NO. 012f IP Length is:0348 CRC-32check OK!
the NO. 0130 IP Length is:0349 CRC-32check OK!
the NO. 0131 IP Length is:0350 CRC-32check OK!
the NO. 0132 IP Length is:0351 CRC-32check OK!
the NO. 0133 IP Length is:0352 CRC-32check OK!
the NO. 0134 IP Length is:0353 CRC-32check OK!
the NO. 0135 IP Length is:0354 CRC-32check OK!
the NO. 0136 IP Length is:0355 CRC-32check OK!
the NO. 0137 IP Length is:0356 CRC-32check OK!
the NO. 0138 IP Length is:0357 CRC-32check OK!
the NO. 0139 IP Length is:0358 CRC-32check OK!
the NO. 013a IP Length is:0359 CRC-32check OK!
the NO. 013b IP Length is:0360 CRC-32check OK!
the NO. 013c IP Length is:0361 CRC-32check OK!
the NO. 013d IP Length is:0362 CRC-32check OK!
the NO. 013e IP Length is:0363 CRC-32check OK!
the NO. 013f IP Length is:0364 CRC-32check OK!
the NO. 0140 IP Length is:0365 CRC-32check OK!
the NO. 0141 IP Length is:0366 CRC-32check OK!
the NO. 0142 IP Length is:0367 CRC-32check OK!
the NO. 0143 IP Length is:0368 CRC-32check OK!
the NO. 0144 IP Length is:0369 CRC-32check OK!
the NO. 0145 IP Length is:0370 CRC-32check OK!
the NO. 0146 IP Length is:0371 CRC-32check OK!
the NO. 0147 IP Length is:0372 CRC-32check OK!
the NO. 0148 IP Length is:0373 CRC-32check OK!
the NO. 0149 IP Length is:0374 CRC-32check OK!
the NO. 014a IP Length is:0375 CRC-32check OK!
the NO. 014b IP Length is:0376 CRC-32check OK!
the NO. 014c IP Length is:0377 CRC-32check OK!
the NO. 014d IP Length is:0378 CRC-32check OK!
the NO. 014e IP Length is:0379 CRC-32check OK!
the NO. 014f IP Length is:0380 CRC-32check OK!
the NO. 0150 IP Length is:0381 CRC-32check OK!
the NO. 0151 IP Length is:0382 CRC-32check OK!
the NO. 0152 IP Length is:0383 CRC-32check OK!
the NO. 0153 IP Length is:0384 CRC-32check OK!
the NO. 0154 IP Length is:0385 CRC-32check OK!
the NO. 0155 IP Length is:0386 CRC-32check OK!
the NO. 0156 IP Length is:0387 CRC-32check OK!
the NO. 0157 IP Length is:0388 CRC-32check OK!
the NO. 0158 IP Length is:0389 CRC-32check OK!
the NO. 0159 IP Length is:0390 CRC-32check OK!
the NO. 015a IP Length is:0391 CRC-32check OK!
the NO. 015b IP Length is:0392 CRC-32check OK!
the NO. 015c IP Length is:0393 CRC-32check OK!
the NO. 015d IP Length is:0394 CRC-32check OK!
the NO. 015e IP Length is:0395 CRC-32check OK!
the NO. 015f IP Length is:0396 CRC-32check OK!
the NO. 0160 IP Length is:0397 CRC-32check OK!
the NO. 0161 IP Length is:0398 CRC-32check OK!
the NO. 0162 IP Length is:0399 CRC-32check OK!
the NO. 0163 IP Length is:0400 CRC-32check OK!
the NO. 0164 IP Length is:0401 CRC-32check OK!
the NO. 0165 IP Length is:0402 CRC-32check OK!
the NO. 0166 IP Length is:0403 CRC-32check OK!
the NO. 0167 IP Length is:0404 CRC-32check OK!
the NO. 0168 IP Length is:0405 CRC-32check OK!
the NO. 0169 IP Length is:0406 CRC-32check OK!
the NO. 016a IP Length is:0407 CRC-32check OK!
the NO. 016b IP Length is:0408 CRC-32check OK!
the NO. 016c IP Length is:0409 CRC-32check OK!
the NO. 016d IP Length is:0410 CRC-32check OK!
the NO. 016e IP Length is:0411 CRC-32check OK!
the NO. 016f IP Length is:0412 CRC-32check OK!
the NO. 0170 IP Length is:0413 CRC-32check OK!
the NO. 0171 IP Length is:0414 CRC-32check OK!
the NO. 0172 IP Length is:0415 CRC-32check OK!
the NO. 0173 IP Length is:0416 CRC-32check OK!
the NO. 0174 IP Length is:0417 CRC-32check OK!
the NO. 0175 IP Length is:0418 CRC-32check OK!
the NO. 0176 IP Length is:0419 CRC-32check OK!
the NO. 0177 IP Length is:0420 CRC-32check OK!
the NO. 0178 IP Length is:0421 CRC-32check OK!
the NO. 0179 IP Length is:0422 CRC-32check OK!
the NO. 017a IP Length is:0423 CRC-32check OK!
the NO. 017b IP Length is:0424 CRC-32check OK!
the NO. 017c IP Length is:0425 CRC-32check OK!
the NO. 017d IP Length is:0426 CRC-32check OK!
the NO. 017e IP Length is:0427 CRC-32check OK!
the NO. 017f IP Length is:0428 CRC-32check OK!
the NO. 0180 IP Length is:0429 CRC-32check OK!
the NO. 0181 IP Length is:0430 CRC-32check OK!
the NO. 0182 IP Length is:0431 CRC-32check OK!
the NO. 0183 IP Length is:0432 CRC-32check OK!
the NO. 0184 IP Length is:0433 CRC-32check OK!
the NO. 0185 IP Length is:0434 CRC-32check OK!
the NO. 0186 IP Length is:0435 CRC-32check OK!
the NO. 0187 IP Length is:0436 CRC-32check OK!
the NO. 0188 IP Length is:0437 CRC-32check OK!
the NO. 0189 IP Length is:0438 CRC-32check OK!
the NO. 018a IP Length is:0439 CRC-32check OK!
the NO. 018b IP Length is:0440 CRC-32check OK!
the NO. 018c IP Length is:0441 CRC-32check OK!
the NO. 018d IP Length is:0442 CRC-32check OK!
the NO. 018e IP Length is:0443 CRC-32check OK!
the NO. 018f IP Length is:0444 CRC-32check OK!
the NO. 0190 IP Length is:0445 CRC-32check OK!
the NO. 0191 IP Length is:0446 CRC-32check OK!
the NO. 0192 IP Length is:0447 CRC-32check OK!
the NO. 0193 IP Length is:0448 CRC-32check OK!
the NO. 0194 IP Length is:0449 CRC-32check OK!
the NO. 0195 IP Length is:0450 CRC-32check OK!
the NO. 0196 IP Length is:0451 CRC-32check OK!
the NO. 0197 IP Length is:0452 CRC-32check OK!
the NO. 0198 IP Length is:0453 CRC-32check OK!
the NO. 0199 IP Length is:0454 CRC-32check OK!
the NO. 019a IP Length is:0455 CRC-32check OK!
the NO. 019b IP Length is:0456 CRC-32check OK!
the NO. 019c IP Length is:0457 CRC-32check OK!
the NO. 019d IP Length is:0458 CRC-32check OK!
the NO. 019e IP Length is:0459 CRC-32check OK!
the NO. 019f IP Length is:0460 CRC-32check OK!
the NO. 01a0 IP Length is:0461 CRC-32check OK!
the NO. 01a1 IP Length is:0462 CRC-32check OK!
the NO. 01a2 IP Length is:0463 CRC-32check OK!
the NO. 01a3 IP Length is:0464 CRC-32check OK!
the NO. 01a4 IP Length is:0465 CRC-32check OK!
the NO. 01a5 IP Length is:0466 CRC-32check OK!
the NO. 01a6 IP Length is:0467 CRC-32check OK!
the NO. 01a7 IP Length is:0468 CRC-32check OK!
the NO. 01a8 IP Length is:0469 CRC-32check OK!
the NO. 01a9 IP Length is:0470 CRC-32check OK!
the NO. 01aa IP Length is:0471 CRC-32check OK!
the NO. 01ab IP Length is:0472 CRC-32check OK!
the NO. 01ac IP Length is:0473 CRC-32check OK!
the NO. 01ad IP Length is:0474 CRC-32check OK!
the NO. 01ae IP Length is:0475 CRC-32check OK!
the NO. 01af IP Length is:0476 CRC-32check OK!
the NO. 01b0 IP Length is:0477 CRC-32check OK!
the NO. 01b1 IP Length is:0478 CRC-32check OK!
the NO. 01b2 IP Length is:0479 CRC-32check OK!
the NO. 01b3 IP Length is:0480 CRC-32check OK!
the NO. 01b4 IP Length is:0481 CRC-32check OK!
the NO. 01b5 IP Length is:0482 CRC-32check OK!
the NO. 01b6 IP Length is:0483 CRC-32check OK!
the NO. 01b7 IP Length is:0484 CRC-32check OK!
the NO. 01b8 IP Length is:0485 CRC-32check OK!
the NO. 01b9 IP Length is:0486 CRC-32check OK!
the NO. 01ba IP Length is:0487 CRC-32check OK!
the NO. 01bb IP Length is:0488 CRC-32check OK!
the NO. 01bc IP Length is:0489 CRC-32check OK!
the NO. 01bd IP Length is:0490 CRC-32check OK!
the NO. 01be IP Length is:0491 CRC-32check OK!
the NO. 01bf IP Length is:0492 CRC-32check OK!
the NO. 01c0 IP Length is:0493 CRC-32check OK!
the NO. 01c1 IP Length is:0494 CRC-32check OK!
the NO. 01c2 IP Length is:0495 CRC-32check OK!
the NO. 01c3 IP Length is:0496 CRC-32check OK!
the NO. 01c4 IP Length is:0497 CRC-32check OK!
the NO. 01c5 IP Length is:0498 CRC-32check OK!
the NO. 01c6 IP Length is:0499 CRC-32check OK!
the NO. 01c7 IP Length is:0500 CRC-32check OK!
the NO. 01c8 IP Length is:0501 CRC-32check OK!
the NO. 01c9 IP Length is:0502 CRC-32check OK!
the NO. 01ca IP Length is:0503 CRC-32check OK!
the NO. 01cb IP Length is:0504 CRC-32check OK!
the NO. 01cc IP Length is:0505 CRC-32check OK!
the NO. 01cd IP Length is:0506 CRC-32check OK!
the NO. 01ce IP Length is:0507 CRC-32check OK!
the NO. 01cf IP Length is:0508 CRC-32check OK!
the NO. 01d0 IP Length is:0509 CRC-32check OK!
the NO. 01d1 IP Length is:0510 CRC-32check OK!
the NO. 01d2 IP Length is:0511 CRC-32check OK!
the NO. 01d3 IP Length is:0512 CRC-32check OK!
the NO. 01d4 IP Length is:0513 CRC-32check OK!
the NO. 01d5 IP Length is:0514 CRC-32check OK!
the NO. 01d6 IP Length is:0515 CRC-32check OK!
the NO. 01d7 IP Length is:0516 CRC-32check OK!
the NO. 01d8 IP Length is:0517 CRC-32check OK!
the NO. 01d9 IP Length is:0518 CRC-32check OK!
the NO. 01da IP Length is:0519 CRC-32check OK!
the NO. 01db IP Length is:0520 CRC-32check OK!
the NO. 01dc IP Length is:0521 CRC-32check OK!
the NO. 01dd IP Length is:0522 CRC-32check OK!
the NO. 01de IP Length is:0523 CRC-32check OK!
the NO. 01df IP Length is:0524 CRC-32check OK!
the NO. 01e0 IP Length is:0525 CRC-32check OK!
the NO. 01e1 IP Length is:0526 CRC-32check OK!
the NO. 01e2 IP Length is:0527 CRC-32check OK!
the NO. 01e3 IP Length is:0528 CRC-32check OK!
the NO. 01e4 IP Length is:0529 CRC-32check OK!
the NO. 01e5 IP Length is:0530 CRC-32check OK!
the NO. 01e6 IP Length is:0531 CRC-32check OK!
the NO. 01e7 IP Length is:0532 CRC-32check OK!
the NO. 01e8 IP Length is:0533 CRC-32check OK!
the NO. 01e9 IP Length is:0534 CRC-32check OK!
the NO. 01ea IP Length is:0535 CRC-32check OK!
the NO. 01eb IP Length is:0536 CRC-32check OK!
the NO. 01ec IP Length is:0537 CRC-32check OK!
the NO. 01ed IP Length is:0538 CRC-32check OK!
the NO. 01ee IP Length is:0539 CRC-32check OK!
the NO. 01ef IP Length is:0540 CRC-32check OK!
the NO. 01f0 IP Length is:0541 CRC-32check OK!
the NO. 01f1 IP Length is:0542 CRC-32check OK!
the NO. 01f2 IP Length is:0543 CRC-32check OK!
the NO. 01f3 IP Length is:0544 CRC-32check OK!
the NO. 01f4 IP Length is:0545 CRC-32check OK!
the NO. 01f5 IP Length is:0546 CRC-32check OK!
the NO. 01f6 IP Length is:0547 CRC-32check OK!
the NO. 01f7 IP Length is:0548 CRC-32check OK!
the NO. 01f8 IP Length is:0549 CRC-32check OK!
the NO. 01f9 IP Length is:0550 CRC-32check OK!
the NO. 01fa IP Length is:0551 CRC-32check OK!
the NO. 01fb IP Length is:0552 CRC-32check OK!
the NO. 01fc IP Length is:0553 CRC-32check OK!
the NO. 01fd IP Length is:0554 CRC-32check OK!
the NO. 01fe IP Length is:0555 CRC-32check OK!
the NO. 01ff IP Length is:0556 CRC-32check OK!
the NO. 0200 IP Length is:0557 CRC-32check OK!
the NO. 0201 IP Length is:0558 CRC-32check OK!
the NO. 0202 IP Length is:0559 CRC-32check OK!
the NO. 0203 IP Length is:0560 CRC-32check OK!
the NO. 0204 IP Length is:0561 CRC-32check OK!
the NO. 0205 IP Length is:0562 CRC-32check OK!
the NO. 0206 IP Length is:0563 CRC-32check OK!
the NO. 0207 IP Length is:0564 CRC-32check OK!
the NO. 0208 IP Length is:0565 CRC-32check OK!
the NO. 0209 IP Length is:0566 CRC-32check OK!
the NO. 020a IP Length is:0567 CRC-32check OK!
the NO. 020b IP Length is:0568 CRC-32check OK!
the NO. 020c IP Length is:0569 CRC-32check OK!
the NO. 020d IP Length is:0570 CRC-32check OK!
the NO. 020e IP Length is:0571 CRC-32check OK!
the NO. 020f IP Length is:0572 CRC-32check OK!
the NO. 0210 IP Length is:0573 CRC-32check OK!
the NO. 0211 IP Length is:0574 CRC-32check OK!
the NO. 0212 IP Length is:0575 CRC-32check OK!
the NO. 0213 IP Length is:0576 CRC-32check OK!
the NO. 0214 IP Length is:0577 CRC-32check OK!
the NO. 0215 IP Length is:0578 CRC-32check OK!
the NO. 0216 IP Length is:0579 CRC-32check OK!
the NO. 0217 IP Length is:0580 CRC-32check OK!
the NO. 0218 IP Length is:0581 CRC-32check OK!
the NO. 0219 IP Length is:0582 CRC-32check OK!
the NO. 021a IP Length is:0583 CRC-32check OK!
the NO. 021b IP Length is:0584 CRC-32check OK!
the NO. 021c IP Length is:0585 CRC-32check OK!
the NO. 021d IP Length is:0586 CRC-32check OK!
the NO. 021e IP Length is:0587 CRC-32check OK!
the NO. 021f IP Length is:0588 CRC-32check OK!
the NO. 0220 IP Length is:0589 CRC-32check OK!
the NO. 0221 IP Length is:0590 CRC-32check OK!
the NO. 0222 IP Length is:0591 CRC-32check OK!
the NO. 0223 IP Length is:0592 CRC-32check OK!
the NO. 0224 IP Length is:0593 CRC-32check OK!
the NO. 0225 IP Length is:0594 CRC-32check OK!
the NO. 0226 IP Length is:0595 CRC-32check OK!
the NO. 0227 IP Length is:0596 CRC-32check OK!
the NO. 0228 IP Length is:0597 CRC-32check OK!
the NO. 0229 IP Length is:0598 CRC-32check OK!
the NO. 022a IP Length is:0599 CRC-32check OK!
the NO. 022b IP Length is:0600 CRC-32check OK!
the NO. 022c IP Length is:0601 CRC-32check OK!
the NO. 022d IP Length is:0602 CRC-32check OK!
the NO. 022e IP Length is:0603 CRC-32check OK!
the NO. 022f IP Length is:0604 CRC-32check OK!
the NO. 0230 IP Length is:0605 CRC-32check OK!
the NO. 0231 IP Length is:0606 CRC-32check OK!
the NO. 0232 IP Length is:0607 CRC-32check OK!
the NO. 0233 IP Length is:0608 CRC-32check OK!
the NO. 0234 IP Length is:0609 CRC-32check OK!
the NO. 0235 IP Length is:0610 CRC-32check OK!
the NO. 0236 IP Length is:0611 CRC-32check OK!
the NO. 0237 IP Length is:0612 CRC-32check OK!
the NO. 0238 IP Length is:0613 CRC-32check OK!
the NO. 0239 IP Length is:0614 CRC-32check OK!
the NO. 023a IP Length is:0615 CRC-32check OK!
the NO. 023b IP Length is:0616 CRC-32check OK!
the NO. 023c IP Length is:0617 CRC-32check OK!
the NO. 023d IP Length is:0618 CRC-32check OK!
the NO. 023e IP Length is:0619 CRC-32check OK!
the NO. 023f IP Length is:0620 CRC-32check OK!
the NO. 0240 IP Length is:0621 CRC-32check OK!
the NO. 0241 IP Length is:0622 CRC-32check OK!
the NO. 0242 IP Length is:0623 CRC-32check OK!
the NO. 0243 IP Length is:0624 CRC-32check OK!
the NO. 0244 IP Length is:0625 CRC-32check OK!
the NO. 0245 IP Length is:0626 CRC-32check OK!
the NO. 0246 IP Length is:0627 CRC-32check OK!
the NO. 0247 IP Length is:0628 CRC-32check OK!
the NO. 0248 IP Length is:0629 CRC-32check OK!
the NO. 0249 IP Length is:0630 CRC-32check OK!
the NO. 024a IP Length is:0631 CRC-32check OK!
the NO. 024b IP Length is:0632 CRC-32check OK!
the NO. 024c IP Length is:0633 CRC-32check OK!
the NO. 024d IP Length is:0634 CRC-32check OK!
the NO. 024e IP Length is:0635 CRC-32check OK!
the NO. 024f IP Length is:0636 CRC-32check OK!
the NO. 0250 IP Length is:0637 CRC-32check OK!
the NO. 0251 IP Length is:0638 CRC-32check OK!
the NO. 0252 IP Length is:0639 CRC-32check OK!
the NO. 0253 IP Length is:0640 CRC-32check OK!
the NO. 0254 IP Length is:0641 CRC-32check OK!
the NO. 0255 IP Length is:0642 CRC-32check OK!
the NO. 0256 IP Length is:0643 CRC-32check OK!
the NO. 0257 IP Length is:0644 CRC-32check OK!
the NO. 0258 IP Length is:0645 CRC-32check OK!
the NO. 0259 IP Length is:0646 CRC-32check OK!
the NO. 025a IP Length is:0647 CRC-32check OK!
the NO. 025b IP Length is:0648 CRC-32check OK!
the NO. 025c IP Length is:0649 CRC-32check OK!
the NO. 025d IP Length is:0650 CRC-32check OK!
the NO. 025e IP Length is:0651 CRC-32check OK!
the NO. 025f IP Length is:0652 CRC-32check OK!
the NO. 0260 IP Length is:0653 CRC-32check OK!
the NO. 0261 IP Length is:0654 CRC-32check OK!
the NO. 0262 IP Length is:0655 CRC-32check OK!
the NO. 0263 IP Length is:0656 CRC-32check OK!
the NO. 0264 IP Length is:0657 CRC-32check OK!
the NO. 0265 IP Length is:0658 CRC-32check OK!
the NO. 0266 IP Length is:0659 CRC-32check OK!
the NO. 0267 IP Length is:0660 CRC-32check OK!
the NO. 0268 IP Length is:0661 CRC-32check OK!
the NO. 0269 IP Length is:0662 CRC-32check OK!
the NO. 026a IP Length is:0663 CRC-32check OK!
the NO. 026b IP Length is:0664 CRC-32check OK!
the NO. 026c IP Length is:0665 CRC-32check OK!
the NO. 026d IP Length is:0666 CRC-32check OK!
the NO. 026e IP Length is:0667 CRC-32check OK!
the NO. 026f IP Length is:0668 CRC-32check OK!
the NO. 0270 IP Length is:0669 CRC-32check OK!
the NO. 0271 IP Length is:0670 CRC-32check OK!
the NO. 0272 IP Length is:0671 CRC-32check OK!
the NO. 0273 IP Length is:0672 CRC-32check OK!
the NO. 0274 IP Length is:0673 CRC-32check OK!
the NO. 0275 IP Length is:0674 CRC-32check OK!
the NO. 0276 IP Length is:0675 CRC-32check OK!
the NO. 0277 IP Length is:0676 CRC-32check OK!
the NO. 0278 IP Length is:0677 CRC-32check OK!
the NO. 0279 IP Length is:0678 CRC-32check OK!
the NO. 027a IP Length is:0679 CRC-32check OK!
the NO. 027b IP Length is:0680 CRC-32check OK!
the NO. 027c IP Length is:0681 CRC-32check OK!
the NO. 027d IP Length is:0682 CRC-32check OK!
the NO. 027e IP Length is:0683 CRC-32check OK!
the NO. 027f IP Length is:0684 CRC-32check OK!
the NO. 0280 IP Length is:0685 CRC-32check OK!
the NO. 0281 IP Length is:0686 CRC-32check OK!
the NO. 0282 IP Length is:0687 CRC-32check OK!
the NO. 0283 IP Length is:0688 CRC-32check OK!
the NO. 0284 IP Length is:0689 CRC-32check OK!
the NO. 0285 IP Length is:0690 CRC-32check OK!
the NO. 0286 IP Length is:0691 CRC-32check OK!
the NO. 0287 IP Length is:0692 CRC-32check OK!
the NO. 0288 IP Length is:0693 CRC-32check OK!
the NO. 0289 IP Length is:0694 CRC-32check OK!
the NO. 028a IP Length is:0695 CRC-32check OK!
the NO. 028b IP Length is:0696 CRC-32check OK!
the NO. 028c IP Length is:0697 CRC-32check OK!
the NO. 028d IP Length is:0698 CRC-32check OK!
the NO. 028e IP Length is:0699 CRC-32check OK!
the NO. 028f IP Length is:0700 CRC-32check OK!
the NO. 0290 IP Length is:0701 CRC-32check OK!
the NO. 0291 IP Length is:0702 CRC-32check OK!
the NO. 0292 IP Length is:0703 CRC-32check OK!
the NO. 0293 IP Length is:0704 CRC-32check OK!
the NO. 0294 IP Length is:0705 CRC-32check OK!
the NO. 0295 IP Length is:0706 CRC-32check OK!
the NO. 0296 IP Length is:0707 CRC-32check OK!
the NO. 0297 IP Length is:0708 CRC-32check OK!
the NO. 0298 IP Length is:0709 CRC-32check OK!
the NO. 0299 IP Length is:0710 CRC-32check OK!
the NO. 029a IP Length is:0711 CRC-32check OK!
the NO. 029b IP Length is:0712 CRC-32check OK!
the NO. 029c IP Length is:0713 CRC-32check OK!
the NO. 029d IP Length is:0714 CRC-32check OK!
the NO. 029e IP Length is:0715 CRC-32check OK!
the NO. 029f IP Length is:0716 CRC-32check OK!
the NO. 02a0 IP Length is:0717 CRC-32check OK!
the NO. 02a1 IP Length is:0718 CRC-32check OK!
the NO. 02a2 IP Length is:0719 CRC-32check OK!
the NO. 02a3 IP Length is:0720 CRC-32check OK!
the NO. 02a4 IP Length is:0721 CRC-32check OK!
the NO. 02a5 IP Length is:0722 CRC-32check OK!
the NO. 02a6 IP Length is:0723 CRC-32check OK!
the NO. 02a7 IP Length is:0724 CRC-32check OK!
the NO. 02a8 IP Length is:0725 CRC-32check OK!
the NO. 02a9 IP Length is:0726 CRC-32check OK!
the NO. 02aa IP Length is:0727 CRC-32check OK!
the NO. 02ab IP Length is:0728 CRC-32check OK!
the NO. 02ac IP Length is:0729 CRC-32check OK!
the NO. 02ad IP Length is:0730 CRC-32check OK!
the NO. 02ae IP Length is:0731 CRC-32check OK!
the NO. 02af IP Length is:0732 CRC-32check OK!
the NO. 02b0 IP Length is:0733 CRC-32check OK!
the NO. 02b1 IP Length is:0734 CRC-32check OK!
the NO. 02b2 IP Length is:0735 CRC-32check OK!
the NO. 02b3 IP Length is:0736 CRC-32check OK!
the NO. 02b4 IP Length is:0737 CRC-32check OK!
the NO. 02b5 IP Length is:0738 CRC-32check OK!
the NO. 02b6 IP Length is:0739 CRC-32check OK!
the NO. 02b7 IP Length is:0740 CRC-32check OK!
the NO. 02b8 IP Length is:0741 CRC-32check OK!
the NO. 02b9 IP Length is:0742 CRC-32check OK!
the NO. 02ba IP Length is:0743 CRC-32check OK!
the NO. 02bb IP Length is:0744 CRC-32check OK!
the NO. 02bc IP Length is:0745 CRC-32check OK!
the NO. 02bd IP Length is:0746 CRC-32check OK!
the NO. 02be IP Length is:0747 CRC-32check OK!
the NO. 02bf IP Length is:0748 CRC-32check OK!
the NO. 02c0 IP Length is:0749 CRC-32check OK!
the NO. 02c1 IP Length is:0750 CRC-32check OK!
the NO. 02c2 IP Length is:0751 CRC-32check OK!
the NO. 02c3 IP Length is:0752 CRC-32check OK!
the NO. 02c4 IP Length is:0753 CRC-32check OK!
the NO. 02c5 IP Length is:0754 CRC-32check OK!
the NO. 02c6 IP Length is:0755 CRC-32check OK!
the NO. 02c7 IP Length is:0756 CRC-32check OK!
the NO. 02c8 IP Length is:0757 CRC-32check OK!
the NO. 02c9 IP Length is:0758 CRC-32check OK!
the NO. 02ca IP Length is:0759 CRC-32check OK!
the NO. 02cb IP Length is:0760 CRC-32check OK!
the NO. 02cc IP Length is:0761 CRC-32check OK!
the NO. 02cd IP Length is:0762 CRC-32check OK!
the NO. 02ce IP Length is:0763 CRC-32check OK!
the NO. 02cf IP Length is:0764 CRC-32check OK!
the NO. 02d0 IP Length is:0765 CRC-32check OK!
the NO. 02d1 IP Length is:0766 CRC-32check OK!
the NO. 02d2 IP Length is:0767 CRC-32check OK!
the NO. 02d3 IP Length is:0768 CRC-32check OK!
the NO. 02d4 IP Length is:0769 CRC-32check OK!
the NO. 02d5 IP Length is:0770 CRC-32check OK!
the NO. 02d6 IP Length is:0771 CRC-32check OK!
the NO. 02d7 IP Length is:0772 CRC-32check OK!
the NO. 02d8 IP Length is:0773 CRC-32check OK!
the NO. 02d9 IP Length is:0774 CRC-32check OK!
the NO. 02da IP Length is:0775 CRC-32check OK!
the NO. 02db IP Length is:0776 CRC-32check OK!
the NO. 02dc IP Length is:0777 CRC-32check OK!
the NO. 02dd IP Length is:0778 CRC-32check OK!
the NO. 02de IP Length is:0779 CRC-32check OK!
the NO. 02df IP Length is:0780 CRC-32check OK!
the NO. 02e0 IP Length is:0781 CRC-32check OK!
the NO. 02e1 IP Length is:0782 CRC-32check OK!
the NO. 02e2 IP Length is:0783 CRC-32check OK!
the NO. 02e3 IP Length is:0784 CRC-32check OK!
the NO. 02e4 IP Length is:0785 CRC-32check OK!
the NO. 02e5 IP Length is:0786 CRC-32check OK!
the NO. 02e6 IP Length is:0787 CRC-32check OK!
the NO. 02e7 IP Length is:0788 CRC-32check OK!
the NO. 02e8 IP Length is:0789 CRC-32check OK!
the NO. 02e9 IP Length is:0790 CRC-32check OK!
the NO. 02ea IP Length is:0791 CRC-32check OK!
the NO. 02eb IP Length is:0792 CRC-32check OK!
the NO. 02ec IP Length is:0793 CRC-32check OK!
the NO. 02ed IP Length is:0794 CRC-32check OK!
the NO. 02ee IP Length is:0795 CRC-32check OK!
the NO. 02ef IP Length is:0796 CRC-32check OK!
the NO. 02f0 IP Length is:0797 CRC-32check OK!
the NO. 02f1 IP Length is:0798 CRC-32check OK!
the NO. 02f2 IP Length is:0799 CRC-32check OK!
the NO. 02f3 IP Length is:0800 CRC-32check OK!
the NO. 02f4 IP Length is:0801 CRC-32check OK!
the NO. 02f5 IP Length is:0802 CRC-32check OK!
the NO. 02f6 IP Length is:0803 CRC-32check OK!
the NO. 02f7 IP Length is:0804 CRC-32check OK!
the NO. 02f8 IP Length is:0805 CRC-32check OK!
the NO. 02f9 IP Length is:0806 CRC-32check OK!
the NO. 02fa IP Length is:0807 CRC-32check OK!
the NO. 02fb IP Length is:0808 CRC-32check OK!
the NO. 02fc IP Length is:0809 CRC-32check OK!
the NO. 02fd IP Length is:0810 CRC-32check OK!
the NO. 02fe IP Length is:0811 CRC-32check OK!
the NO. 02ff IP Length is:0812 CRC-32check OK!
the NO. 0300 IP Length is:0813 CRC-32check OK!
the NO. 0301 IP Length is:0814 CRC-32check OK!
the NO. 0302 IP Length is:0815 CRC-32check OK!
the NO. 0303 IP Length is:0816 CRC-32check OK!
the NO. 0304 IP Length is:0817 CRC-32check OK!
the NO. 0305 IP Length is:0818 CRC-32check OK!
the NO. 0306 IP Length is:0819 CRC-32check OK!
the NO. 0307 IP Length is:0820 CRC-32check OK!
the NO. 0308 IP Length is:0821 CRC-32check OK!
the NO. 0309 IP Length is:0822 CRC-32check OK!
the NO. 030a IP Length is:0823 CRC-32check OK!
the NO. 030b IP Length is:0824 CRC-32check OK!
the NO. 030c IP Length is:0825 CRC-32check OK!
the NO. 030d IP Length is:0826 CRC-32check OK!
the NO. 030e IP Length is:0827 CRC-32check OK!
the NO. 030f IP Length is:0828 CRC-32check OK!
the NO. 0310 IP Length is:0829 CRC-32check OK!
the NO. 0311 IP Length is:0830 CRC-32check OK!
the NO. 0312 IP Length is:0831 CRC-32check OK!
the NO. 0313 IP Length is:0832 CRC-32check OK!
the NO. 0314 IP Length is:0833 CRC-32check OK!
the NO. 0315 IP Length is:0834 CRC-32check OK!
the NO. 0316 IP Length is:0835 CRC-32check OK!
the NO. 0317 IP Length is:0836 CRC-32check OK!
the NO. 0318 IP Length is:0837 CRC-32check OK!
the NO. 0319 IP Length is:0838 CRC-32check OK!
the NO. 031a IP Length is:0839 CRC-32check OK!
the NO. 031b IP Length is:0840 CRC-32check OK!
the NO. 031c IP Length is:0841 CRC-32check OK!
the NO. 031d IP Length is:0842 CRC-32check OK!
the NO. 031e IP Length is:0843 CRC-32check OK!
the NO. 031f IP Length is:0844 CRC-32check OK!
the NO. 0320 IP Length is:0845 CRC-32check OK!
the NO. 0321 IP Length is:0846 CRC-32check OK!
the NO. 0322 IP Length is:0847 CRC-32check OK!
the NO. 0323 IP Length is:0848 CRC-32check OK!
the NO. 0324 IP Length is:0849 CRC-32check OK!
the NO. 0325 IP Length is:0850 CRC-32check OK!
the NO. 0326 IP Length is:0851 CRC-32check OK!
the NO. 0327 IP Length is:0852 CRC-32check OK!
the NO. 0328 IP Length is:0853 CRC-32check OK!
the NO. 0329 IP Length is:0854 CRC-32check OK!
the NO. 032a IP Length is:0855 CRC-32check OK!
the NO. 032b IP Length is:0856 CRC-32check OK!
the NO. 032c IP Length is:0857 CRC-32check OK!
the NO. 032d IP Length is:0858 CRC-32check OK!
the NO. 032e IP Length is:0859 CRC-32check OK!
the NO. 032f IP Length is:0860 CRC-32check OK!
the NO. 0330 IP Length is:0861 CRC-32check OK!
the NO. 0331 IP Length is:0862 CRC-32check OK!
the NO. 0332 IP Length is:0863 CRC-32check OK!
the NO. 0333 IP Length is:0864 CRC-32check OK!
the NO. 0334 IP Length is:0865 CRC-32check OK!
the NO. 0335 IP Length is:0866 CRC-32check OK!
the NO. 0336 IP Length is:0867 CRC-32check OK!
the NO. 0337 IP Length is:0868 CRC-32check OK!
the NO. 0338 IP Length is:0869 CRC-32check OK!
the NO. 0339 IP Length is:0870 CRC-32check OK!
the NO. 033a IP Length is:0871 CRC-32check OK!
the NO. 033b IP Length is:0872 CRC-32check OK!
the NO. 033c IP Length is:0873 CRC-32check OK!
the NO. 033d IP Length is:0874 CRC-32check OK!
the NO. 033e IP Length is:0875 CRC-32check OK!
the NO. 033f IP Length is:0876 CRC-32check OK!
the NO. 0340 IP Length is:0877 CRC-32check OK!
the NO. 0341 IP Length is:0878 CRC-32check OK!
the NO. 0342 IP Length is:0879 CRC-32check OK!
the NO. 0343 IP Length is:0880 CRC-32check OK!
the NO. 0344 IP Length is:0881 CRC-32check OK!
the NO. 0345 IP Length is:0882 CRC-32check OK!
the NO. 0346 IP Length is:0883 CRC-32check OK!
the NO. 0347 IP Length is:0884 CRC-32check OK!
the NO. 0348 IP Length is:0885 CRC-32check OK!
the NO. 0349 IP Length is:0886 CRC-32check OK!
the NO. 034a IP Length is:0887 CRC-32check OK!
the NO. 034b IP Length is:0888 CRC-32check OK!
the NO. 034c IP Length is:0889 CRC-32check OK!
the NO. 034d IP Length is:0890 CRC-32check OK!
the NO. 034e IP Length is:0891 CRC-32check OK!
the NO. 034f IP Length is:0892 CRC-32check OK!
the NO. 0350 IP Length is:0893 CRC-32check OK!
the NO. 0351 IP Length is:0894 CRC-32check OK!
the NO. 0352 IP Length is:0895 CRC-32check OK!
the NO. 0353 IP Length is:0896 CRC-32check OK!
the NO. 0354 IP Length is:0897 CRC-32check OK!
the NO. 0355 IP Length is:0898 CRC-32check OK!
the NO. 0356 IP Length is:0899 CRC-32check OK!
the NO. 0357 IP Length is:0900 CRC-32check OK!
the NO. 0358 IP Length is:0901 CRC-32check OK!
the NO. 0359 IP Length is:0902 CRC-32check OK!
the NO. 035a IP Length is:0903 CRC-32check OK!
the NO. 035b IP Length is:0904 CRC-32check OK!
the NO. 035c IP Length is:0905 CRC-32check OK!
the NO. 035d IP Length is:0906 CRC-32check OK!
the NO. 035e IP Length is:0907 CRC-32check OK!
the NO. 035f IP Length is:0908 CRC-32check OK!
the NO. 0360 IP Length is:0909 CRC-32check OK!
the NO. 0361 IP Length is:0910 CRC-32check OK!
the NO. 0362 IP Length is:0911 CRC-32check OK!
the NO. 0363 IP Length is:0912 CRC-32check OK!
the NO. 0364 IP Length is:0913 CRC-32check OK!
the NO. 0365 IP Length is:0914 CRC-32check OK!
the NO. 0366 IP Length is:0915 CRC-32check OK!
the NO. 0367 IP Length is:0916 CRC-32check OK!
the NO. 0368 IP Length is:0917 CRC-32check OK!
the NO. 0369 IP Length is:0918 CRC-32check OK!
the NO. 036a IP Length is:0919 CRC-32check OK!
the NO. 036b IP Length is:0920 CRC-32check OK!
the NO. 036c IP Length is:0921 CRC-32check OK!
the NO. 036d IP Length is:0922 CRC-32check OK!
the NO. 036e IP Length is:0923 CRC-32check OK!
the NO. 036f IP Length is:0924 CRC-32check OK!
the NO. 0370 IP Length is:0925 CRC-32check OK!
the NO. 0371 IP Length is:0926 CRC-32check OK!
the NO. 0372 IP Length is:0927 CRC-32check OK!
the NO. 0373 IP Length is:0928 CRC-32check OK!
the NO. 0374 IP Length is:0929 CRC-32check OK!
the NO. 0375 IP Length is:0930 CRC-32check OK!
the NO. 0376 IP Length is:0931 CRC-32check OK!
the NO. 0377 IP Length is:0932 CRC-32check OK!
the NO. 0378 IP Length is:0933 CRC-32check OK!
the NO. 0379 IP Length is:0934 CRC-32check OK!
the NO. 037a IP Length is:0935 CRC-32check OK!
the NO. 037b IP Length is:0936 CRC-32check OK!
the NO. 037c IP Length is:0937 CRC-32check OK!
the NO. 037d IP Length is:0938 CRC-32check OK!
the NO. 037e IP Length is:0939 CRC-32check OK!
the NO. 037f IP Length is:0940 CRC-32check OK!
the NO. 0380 IP Length is:0941 CRC-32check OK!
the NO. 0381 IP Length is:0942 CRC-32check OK!
the NO. 0382 IP Length is:0943 CRC-32check OK!
the NO. 0383 IP Length is:0944 CRC-32check OK!
the NO. 0384 IP Length is:0945 CRC-32check OK!
the NO. 0385 IP Length is:0946 CRC-32check OK!
the NO. 0386 IP Length is:0947 CRC-32check OK!
the NO. 0387 IP Length is:0948 CRC-32check OK!
the NO. 0388 IP Length is:0949 CRC-32check OK!
the NO. 0389 IP Length is:0950 CRC-32check OK!
the NO. 038a IP Length is:0951 CRC-32check OK!
the NO. 038b IP Length is:0952 CRC-32check OK!
the NO. 038c IP Length is:0953 CRC-32check OK!
the NO. 038d IP Length is:0954 CRC-32check OK!
the NO. 038e IP Length is:0955 CRC-32check OK!
the NO. 038f IP Length is:0956 CRC-32check OK!
the NO. 0390 IP Length is:0957 CRC-32check OK!
the NO. 0391 IP Length is:0958 CRC-32check OK!
the NO. 0392 IP Length is:0959 CRC-32check OK!
the NO. 0393 IP Length is:0960 CRC-32check OK!
the NO. 0394 IP Length is:0961 CRC-32check OK!
the NO. 0395 IP Length is:0962 CRC-32check OK!
the NO. 0396 IP Length is:0963 CRC-32check OK!
the NO. 0397 IP Length is:0964 CRC-32check OK!
the NO. 0398 IP Length is:0965 CRC-32check OK!
the NO. 0399 IP Length is:0966 CRC-32check OK!
the NO. 039a IP Length is:0967 CRC-32check OK!
the NO. 039b IP Length is:0968 CRC-32check OK!
the NO. 039c IP Length is:0969 CRC-32check OK!
the NO. 039d IP Length is:0970 CRC-32check OK!
the NO. 039e IP Length is:0971 CRC-32check OK!
the NO. 039f IP Length is:0972 CRC-32check OK!
the NO. 03a0 IP Length is:0973 CRC-32check OK!
the NO. 03a1 IP Length is:0974 CRC-32check OK!
the NO. 03a2 IP Length is:0975 CRC-32check OK!
the NO. 03a3 IP Length is:0976 CRC-32check OK!
the NO. 03a4 IP Length is:0977 CRC-32check OK!
the NO. 03a5 IP Length is:0978 CRC-32check OK!
the NO. 03a6 IP Length is:0979 CRC-32check OK!
the NO. 03a7 IP Length is:0980 CRC-32check OK!
the NO. 03a8 IP Length is:0981 CRC-32check OK!
the NO. 03a9 IP Length is:0982 CRC-32check OK!
the NO. 03aa IP Length is:0983 CRC-32check OK!
the NO. 03ab IP Length is:0984 CRC-32check OK!
the NO. 03ac IP Length is:0985 CRC-32check OK!
the NO. 03ad IP Length is:0986 CRC-32check OK!
the NO. 03ae IP Length is:0987 CRC-32check OK!
the NO. 03af IP Length is:0988 CRC-32check OK!
the NO. 03b0 IP Length is:0989 CRC-32check OK!
the NO. 03b1 IP Length is:0990 CRC-32check OK!
the NO. 03b2 IP Length is:0991 CRC-32check OK!
the NO. 03b3 IP Length is:0992 CRC-32check OK!
the NO. 03b4 IP Length is:0993 CRC-32check OK!
the NO. 03b5 IP Length is:0994 CRC-32check OK!
the NO. 03b6 IP Length is:0995 CRC-32check OK!
the NO. 03b7 IP Length is:0996 CRC-32check OK!
the NO. 03b8 IP Length is:0997 CRC-32check OK!
the NO. 03b9 IP Length is:0998 CRC-32check OK!
the NO. 03ba IP Length is:0999 CRC-32check OK!
the NO. 03bb IP Length is:1000 CRC-32check OK!
the NO. 03bc IP Length is:1001 CRC-32check OK!
the NO. 03bd IP Length is:1002 CRC-32check OK!
the NO. 03be IP Length is:1003 CRC-32check OK!
the NO. 03bf IP Length is:1004 CRC-32check OK!
the NO. 03c0 IP Length is:1005 CRC-32check OK!
the NO. 03c1 IP Length is:1006 CRC-32check OK!
the NO. 03c2 IP Length is:1007 CRC-32check OK!
the NO. 03c3 IP Length is:1008 CRC-32check OK!
the NO. 03c4 IP Length is:1009 CRC-32check OK!
the NO. 03c5 IP Length is:1010 CRC-32check OK!
the NO. 03c6 IP Length is:1011 CRC-32check OK!
the NO. 03c7 IP Length is:1012 CRC-32check OK!
the NO. 03c8 IP Length is:1013 CRC-32check OK!
the NO. 03c9 IP Length is:1014 CRC-32check OK!
the NO. 03ca IP Length is:1015 CRC-32check OK!
the NO. 03cb IP Length is:1016 CRC-32check OK!
the NO. 03cc IP Length is:1017 CRC-32check OK!
the NO. 03cd IP Length is:1018 CRC-32check OK!
the NO. 03ce IP Length is:1019 CRC-32check OK!
the NO. 03cf IP Length is:1020 CRC-32check OK!
the NO. 03d0 IP Length is:1021 CRC-32check OK!
the NO. 03d1 IP Length is:1022 CRC-32check OK!
the NO. 03d2 IP Length is:1023 CRC-32check OK!
the NO. 03d3 IP Length is:1024 CRC-32check OK!
the NO. 03d4 IP Length is:1025 CRC-32check OK!
the NO. 03d5 IP Length is:1026 CRC-32check OK!
the NO. 03d6 IP Length is:1027 CRC-32check OK!
the NO. 03d7 IP Length is:1028 CRC-32check OK!
the NO. 03d8 IP Length is:1029 CRC-32check OK!
the NO. 03d9 IP Length is:1030 CRC-32check OK!
the NO. 03da IP Length is:1031 CRC-32check OK!
the NO. 03db IP Length is:1032 CRC-32check OK!
the NO. 03dc IP Length is:1033 CRC-32check OK!
the NO. 03dd IP Length is:1034 CRC-32check OK!
the NO. 03de IP Length is:1035 CRC-32check OK!
the NO. 03df IP Length is:1036 CRC-32check OK!
the NO. 03e0 IP Length is:1037 CRC-32check OK!
the NO. 03e1 IP Length is:1038 CRC-32check OK!
the NO. 03e2 IP Length is:1039 CRC-32check OK!
the NO. 03e3 IP Length is:1040 CRC-32check OK!
the NO. 03e4 IP Length is:1041 CRC-32check OK!
the NO. 03e5 IP Length is:1042 CRC-32check OK!
the NO. 03e6 IP Length is:1043 CRC-32check OK!
the NO. 03e7 IP Length is:1044 CRC-32check OK!
the NO. 03e8 IP Length is:1045 CRC-32check OK!
the NO. 03e9 IP Length is:1046 CRC-32check OK!
the NO. 03ea IP Length is:1047 CRC-32check OK!
the NO. 03eb IP Length is:1048 CRC-32check OK!
the NO. 03ec IP Length is:1049 CRC-32check OK!
the NO. 03ed IP Length is:1050 CRC-32check OK!
the NO. 03ee IP Length is:1051 CRC-32check OK!
the NO. 03ef IP Length is:1052 CRC-32check OK!
the NO. 03f0 IP Length is:1053 CRC-32check OK!
the NO. 03f1 IP Length is:1054 CRC-32check OK!
the NO. 03f2 IP Length is:1055 CRC-32check OK!
the NO. 03f3 IP Length is:1056 CRC-32check OK!
the NO. 03f4 IP Length is:1057 CRC-32check OK!
the NO. 03f5 IP Length is:1058 CRC-32check OK!
the NO. 03f6 IP Length is:1059 CRC-32check OK!
the NO. 03f7 IP Length is:1060 CRC-32check OK!
the NO. 03f8 IP Length is:1061 CRC-32check OK!
the NO. 03f9 IP Length is:1062 CRC-32check OK!
the NO. 03fa IP Length is:1063 CRC-32check OK!
the NO. 03fb IP Length is:1064 CRC-32check OK!
the NO. 03fc IP Length is:1065 CRC-32check OK!
the NO. 03fd IP Length is:1066 CRC-32check OK!
the NO. 03fe IP Length is:1067 CRC-32check OK!
the NO. 03ff IP Length is:1068 CRC-32check OK!
the NO. 0400 IP Length is:1069 CRC-32check OK!
the NO. 0401 IP Length is:1070 CRC-32check OK!
the NO. 0402 IP Length is:1071 CRC-32check OK!
the NO. 0403 IP Length is:1072 CRC-32check OK!
the NO. 0404 IP Length is:1073 CRC-32check OK!
the NO. 0405 IP Length is:1074 CRC-32check OK!
the NO. 0406 IP Length is:1075 CRC-32check OK!
the NO. 0407 IP Length is:1076 CRC-32check OK!
the NO. 0408 IP Length is:1077 CRC-32check OK!
the NO. 0409 IP Length is:1078 CRC-32check OK!
the NO. 040a IP Length is:1079 CRC-32check OK!
the NO. 040b IP Length is:1080 CRC-32check OK!
the NO. 040c IP Length is:1081 CRC-32check OK!
the NO. 040d IP Length is:1082 CRC-32check OK!
the NO. 040e IP Length is:1083 CRC-32check OK!
the NO. 040f IP Length is:1084 CRC-32check OK!
the NO. 0410 IP Length is:1085 CRC-32check OK!
the NO. 0411 IP Length is:1086 CRC-32check OK!
the NO. 0412 IP Length is:1087 CRC-32check OK!
the NO. 0413 IP Length is:1088 CRC-32check OK!
the NO. 0414 IP Length is:1089 CRC-32check OK!
the NO. 0415 IP Length is:1090 CRC-32check OK!
the NO. 0416 IP Length is:1091 CRC-32check OK!
the NO. 0417 IP Length is:1092 CRC-32check OK!
the NO. 0418 IP Length is:1093 CRC-32check OK!
the NO. 0419 IP Length is:1094 CRC-32check OK!
the NO. 041a IP Length is:1095 CRC-32check OK!
the NO. 041b IP Length is:1096 CRC-32check OK!
the NO. 041c IP Length is:1097 CRC-32check OK!
the NO. 041d IP Length is:1098 CRC-32check OK!
the NO. 041e IP Length is:1099 CRC-32check OK!
the NO. 041f IP Length is:1100 CRC-32check OK!
the NO. 0420 IP Length is:1101 CRC-32check OK!
the NO. 0421 IP Length is:1102 CRC-32check OK!
the NO. 0422 IP Length is:1103 CRC-32check OK!
the NO. 0423 IP Length is:1104 CRC-32check OK!
the NO. 0424 IP Length is:1105 CRC-32check OK!
the NO. 0425 IP Length is:1106 CRC-32check OK!
the NO. 0426 IP Length is:1107 CRC-32check OK!
the NO. 0427 IP Length is:1108 CRC-32check OK!
the NO. 0428 IP Length is:1109 CRC-32check OK!
the NO. 0429 IP Length is:1110 CRC-32check OK!
the NO. 042a IP Length is:1111 CRC-32check OK!
the NO. 042b IP Length is:1112 CRC-32check OK!
the NO. 042c IP Length is:1113 CRC-32check OK!
the NO. 042d IP Length is:1114 CRC-32check OK!
the NO. 042e IP Length is:1115 CRC-32check OK!
the NO. 042f IP Length is:1116 CRC-32check OK!
the NO. 0430 IP Length is:1117 CRC-32check OK!
the NO. 0431 IP Length is:1118 CRC-32check OK!
the NO. 0432 IP Length is:1119 CRC-32check OK!
the NO. 0433 IP Length is:1120 CRC-32check OK!
the NO. 0434 IP Length is:1121 CRC-32check OK!
the NO. 0435 IP Length is:1122 CRC-32check OK!
the NO. 0436 IP Length is:1123 CRC-32check OK!
the NO. 0437 IP Length is:1124 CRC-32check OK!
the NO. 0438 IP Length is:1125 CRC-32check OK!
the NO. 0439 IP Length is:1126 CRC-32check OK!
the NO. 043a IP Length is:1127 CRC-32check OK!
the NO. 043b IP Length is:1128 CRC-32check OK!
the NO. 043c IP Length is:1129 CRC-32check OK!
the NO. 043d IP Length is:1130 CRC-32check OK!
the NO. 043e IP Length is:1131 CRC-32check OK!
the NO. 043f IP Length is:1132 CRC-32check OK!
the NO. 0440 IP Length is:1133 CRC-32check OK!
the NO. 0441 IP Length is:1134 CRC-32check OK!
the NO. 0442 IP Length is:1135 CRC-32check OK!
the NO. 0443 IP Length is:1136 CRC-32check OK!
the NO. 0444 IP Length is:1137 CRC-32check OK!
the NO. 0445 IP Length is:1138 CRC-32check OK!
the NO. 0446 IP Length is:1139 CRC-32check OK!
the NO. 0447 IP Length is:1140 CRC-32check OK!
the NO. 0448 IP Length is:1141 CRC-32check OK!
the NO. 0449 IP Length is:1142 CRC-32check OK!
the NO. 044a IP Length is:1143 CRC-32check OK!
the NO. 044b IP Length is:1144 CRC-32check OK!
the NO. 044c IP Length is:1145 CRC-32check OK!
the NO. 044d IP Length is:1146 CRC-32check OK!
the NO. 044e IP Length is:1147 CRC-32check OK!
the NO. 044f IP Length is:1148 CRC-32check OK!
the NO. 0450 IP Length is:1149 CRC-32check OK!
the NO. 0451 IP Length is:1150 CRC-32check OK!
the NO. 0452 IP Length is:1151 CRC-32check OK!
the NO. 0453 IP Length is:1152 CRC-32check OK!
the NO. 0454 IP Length is:1153 CRC-32check OK!
the NO. 0455 IP Length is:1154 CRC-32check OK!
the NO. 0456 IP Length is:1155 CRC-32check OK!
the NO. 0457 IP Length is:1156 CRC-32check OK!
the NO. 0458 IP Length is:1157 CRC-32check OK!
the NO. 0459 IP Length is:1158 CRC-32check OK!
the NO. 045a IP Length is:1159 CRC-32check OK!
the NO. 045b IP Length is:1160 CRC-32check OK!
the NO. 045c IP Length is:1161 CRC-32check OK!
the NO. 045d IP Length is:1162 CRC-32check OK!
the NO. 045e IP Length is:1163 CRC-32check OK!
the NO. 045f IP Length is:1164 CRC-32check OK!
the NO. 0460 IP Length is:1165 CRC-32check OK!
the NO. 0461 IP Length is:1166 CRC-32check OK!
the NO. 0462 IP Length is:1167 CRC-32check OK!
the NO. 0463 IP Length is:1168 CRC-32check OK!
the NO. 0464 IP Length is:1169 CRC-32check OK!
the NO. 0465 IP Length is:1170 CRC-32check OK!
the NO. 0466 IP Length is:1171 CRC-32check OK!
the NO. 0467 IP Length is:1172 CRC-32check OK!
the NO. 0468 IP Length is:1173 CRC-32check OK!
the NO. 0469 IP Length is:1174 CRC-32check OK!
the NO. 046a IP Length is:1175 CRC-32check OK!
the NO. 046b IP Length is:1176 CRC-32check OK!
the NO. 046c IP Length is:1177 CRC-32check OK!
the NO. 046d IP Length is:1178 CRC-32check OK!
the NO. 046e IP Length is:1179 CRC-32check OK!
the NO. 046f IP Length is:1180 CRC-32check OK!
the NO. 0470 IP Length is:1181 CRC-32check OK!
the NO. 0471 IP Length is:1182 CRC-32check OK!
the NO. 0472 IP Length is:1183 CRC-32check OK!
the NO. 0473 IP Length is:1184 CRC-32check OK!
the NO. 0474 IP Length is:1185 CRC-32check OK!
the NO. 0475 IP Length is:1186 CRC-32check OK!
the NO. 0476 IP Length is:1187 CRC-32check OK!
the NO. 0477 IP Length is:1188 CRC-32check OK!
the NO. 0478 IP Length is:1189 CRC-32check OK!
the NO. 0479 IP Length is:1190 CRC-32check OK!
the NO. 047a IP Length is:1191 CRC-32check OK!
the NO. 047b IP Length is:1192 CRC-32check OK!
the NO. 047c IP Length is:1193 CRC-32check OK!
the NO. 047d IP Length is:1194 CRC-32check OK!
the NO. 047e IP Length is:1195 CRC-32check OK!
the NO. 047f IP Length is:1196 CRC-32check OK!
the NO. 0480 IP Length is:1197 CRC-32check OK!
the NO. 0481 IP Length is:1198 CRC-32check OK!
the NO. 0482 IP Length is:1199 CRC-32check OK!
the NO. 0483 IP Length is:1200 CRC-32check OK!
the NO. 0484 IP Length is:1201 CRC-32check OK!
the NO. 0485 IP Length is:1202 CRC-32check OK!
the NO. 0486 IP Length is:1203 CRC-32check OK!
the NO. 0487 IP Length is:1204 CRC-32check OK!
the NO. 0488 IP Length is:1205 CRC-32check OK!
the NO. 0489 IP Length is:1206 CRC-32check OK!
the NO. 048a IP Length is:1207 CRC-32check OK!
the NO. 048b IP Length is:1208 CRC-32check OK!
the NO. 048c IP Length is:1209 CRC-32check OK!
the NO. 048d IP Length is:1210 CRC-32check OK!
the NO. 048e IP Length is:1211 CRC-32check OK!
the NO. 048f IP Length is:1212 CRC-32check OK!
the NO. 0490 IP Length is:1213 CRC-32check OK!
the NO. 0491 IP Length is:1214 CRC-32check OK!
the NO. 0492 IP Length is:1215 CRC-32check OK!
the NO. 0493 IP Length is:1216 CRC-32check OK!
the NO. 0494 IP Length is:1217 CRC-32check OK!
the NO. 0495 IP Length is:1218 CRC-32check OK!
the NO. 0496 IP Length is:1219 CRC-32check OK!
the NO. 0497 IP Length is:1220 CRC-32check OK!
the NO. 0498 IP Length is:1221 CRC-32check OK!
the NO. 0499 IP Length is:1222 CRC-32check OK!
the NO. 049a IP Length is:1223 CRC-32check OK!
the NO. 049b IP Length is:1224 CRC-32check OK!
the NO. 049c IP Length is:1225 CRC-32check OK!
the NO. 049d IP Length is:1226 CRC-32check OK!
the NO. 049e IP Length is:1227 CRC-32check OK!
the NO. 049f IP Length is:1228 CRC-32check OK!
the NO. 04a0 IP Length is:1229 CRC-32check OK!
the NO. 04a1 IP Length is:1230 CRC-32check OK!
the NO. 04a2 IP Length is:1231 CRC-32check OK!
the NO. 04a3 IP Length is:1232 CRC-32check OK!
the NO. 04a4 IP Length is:1233 CRC-32check OK!
the NO. 04a5 IP Length is:1234 CRC-32check OK!
the NO. 04a6 IP Length is:1235 CRC-32check OK!
the NO. 04a7 IP Length is:1236 CRC-32check OK!
the NO. 04a8 IP Length is:1237 CRC-32check OK!
the NO. 04a9 IP Length is:1238 CRC-32check OK!
the NO. 04aa IP Length is:1239 CRC-32check OK!
the NO. 04ab IP Length is:1240 CRC-32check OK!
the NO. 04ac IP Length is:1241 CRC-32check OK!
the NO. 04ad IP Length is:1242 CRC-32check OK!
the NO. 04ae IP Length is:1243 CRC-32check OK!
the NO. 04af IP Length is:1244 CRC-32check OK!
the NO. 04b0 IP Length is:1245 CRC-32check OK!
the NO. 04b1 IP Length is:1246 CRC-32check OK!
the NO. 04b2 IP Length is:1247 CRC-32check OK!
the NO. 04b3 IP Length is:1248 CRC-32check OK!
the NO. 04b4 IP Length is:1249 CRC-32check OK!
the NO. 04b5 IP Length is:1250 CRC-32check OK!
the NO. 04b6 IP Length is:1251 CRC-32check OK!
the NO. 04b7 IP Length is:1252 CRC-32check OK!
the NO. 04b8 IP Length is:1253 CRC-32check OK!
the NO. 04b9 IP Length is:1254 CRC-32check OK!
the NO. 04ba IP Length is:1255 CRC-32check OK!
the NO. 04bb IP Length is:1256 CRC-32check OK!
the NO. 04bc IP Length is:1257 CRC-32check OK!
the NO. 04bd IP Length is:1258 CRC-32check OK!
the NO. 04be IP Length is:1259 CRC-32check OK!
the NO. 04bf IP Length is:1260 CRC-32check OK!
the NO. 04c0 IP Length is:1261 CRC-32check OK!
the NO. 04c1 IP Length is:1262 CRC-32check OK!
the NO. 04c2 IP Length is:1263 CRC-32check OK!
the NO. 04c3 IP Length is:1264 CRC-32check OK!
the NO. 04c4 IP Length is:1265 CRC-32check OK!
the NO. 04c5 IP Length is:1266 CRC-32check OK!
the NO. 04c6 IP Length is:1267 CRC-32check OK!
the NO. 04c7 IP Length is:1268 CRC-32check OK!
the NO. 04c8 IP Length is:1269 CRC-32check OK!
the NO. 04c9 IP Length is:1270 CRC-32check OK!
the NO. 04ca IP Length is:1271 CRC-32check OK!
the NO. 04cb IP Length is:1272 CRC-32check OK!
the NO. 04cc IP Length is:1273 CRC-32check OK!
the NO. 04cd IP Length is:1274 CRC-32check OK!
the NO. 04ce IP Length is:1275 CRC-32check OK!
the NO. 04cf IP Length is:1276 CRC-32check OK!
the NO. 04d0 IP Length is:1277 CRC-32check OK!
the NO. 04d1 IP Length is:1278 CRC-32check OK!
the NO. 04d2 IP Length is:1279 CRC-32check OK!
the NO. 04d3 IP Length is:1280 CRC-32check OK!
the NO. 04d4 IP Length is:1281 CRC-32check OK!
the NO. 04d5 IP Length is:1282 CRC-32check OK!
the NO. 04d6 IP Length is:1283 CRC-32check OK!
the NO. 04d7 IP Length is:1284 CRC-32check OK!
the NO. 04d8 IP Length is:1285 CRC-32check OK!
the NO. 04d9 IP Length is:1286 CRC-32check OK!
the NO. 04da IP Length is:1287 CRC-32check OK!
the NO. 04db IP Length is:1288 CRC-32check OK!
the NO. 04dc IP Length is:1289 CRC-32check OK!
the NO. 04dd IP Length is:1290 CRC-32check OK!
the NO. 04de IP Length is:1291 CRC-32check OK!
the NO. 04df IP Length is:1292 CRC-32check OK!
the NO. 04e0 IP Length is:1293 CRC-32check OK!
the NO. 04e1 IP Length is:1294 CRC-32check OK!
the NO. 04e2 IP Length is:1295 CRC-32check OK!
the NO. 04e3 IP Length is:1296 CRC-32check OK!
the NO. 04e4 IP Length is:1297 CRC-32check OK!
the NO. 04e5 IP Length is:1298 CRC-32check OK!
the NO. 04e6 IP Length is:1299 CRC-32check OK!
the NO. 04e7 IP Length is:1300 CRC-32check OK!
the NO. 04e8 IP Length is:1301 CRC-32check OK!
the NO. 04e9 IP Length is:1302 CRC-32check OK!
the NO. 04ea IP Length is:1303 CRC-32check OK!
the NO. 04eb IP Length is:1304 CRC-32check OK!
the NO. 04ec IP Length is:1305 CRC-32check OK!
the NO. 04ed IP Length is:1306 CRC-32check OK!
the NO. 04ee IP Length is:1307 CRC-32check OK!
the NO. 04ef IP Length is:1308 CRC-32check OK!
the NO. 04f0 IP Length is:1309 CRC-32check OK!
the NO. 04f1 IP Length is:1310 CRC-32check OK!
the NO. 04f2 IP Length is:1311 CRC-32check OK!
the NO. 04f3 IP Length is:1312 CRC-32check OK!
the NO. 04f4 IP Length is:1313 CRC-32check OK!
the NO. 04f5 IP Length is:1314 CRC-32check OK!
the NO. 04f6 IP Length is:1315 CRC-32check OK!
the NO. 04f7 IP Length is:1316 CRC-32check OK!
the NO. 04f8 IP Length is:1317 CRC-32check OK!
the NO. 04f9 IP Length is:1318 CRC-32check OK!
the NO. 04fa IP Length is:1319 CRC-32check OK!
the NO. 04fb IP Length is:1320 CRC-32check OK!
the NO. 04fc IP Length is:1321 CRC-32check OK!
the NO. 04fd IP Length is:1322 CRC-32check OK!
the NO. 04fe IP Length is:1323 CRC-32check OK!
the NO. 04ff IP Length is:1324 CRC-32check OK!
the NO. 0500 IP Length is:1325 CRC-32check OK!
the NO. 0501 IP Length is:1326 CRC-32check OK!
the NO. 0502 IP Length is:1327 CRC-32check OK!
the NO. 0503 IP Length is:1328 CRC-32check OK!
the NO. 0504 IP Length is:1329 CRC-32check OK!
the NO. 0505 IP Length is:1330 CRC-32check OK!
the NO. 0506 IP Length is:1331 CRC-32check OK!
the NO. 0507 IP Length is:1332 CRC-32check OK!
the NO. 0508 IP Length is:1333 CRC-32check OK!
the NO. 0509 IP Length is:1334 CRC-32check OK!
the NO. 050a IP Length is:1335 CRC-32check OK!
the NO. 050b IP Length is:1336 CRC-32check OK!
the NO. 050c IP Length is:1337 CRC-32check OK!
the NO. 050d IP Length is:1338 CRC-32check OK!
the NO. 050e IP Length is:1339 CRC-32check OK!
the NO. 050f IP Length is:1340 CRC-32check OK!
the NO. 0510 IP Length is:1341 CRC-32check OK!
the NO. 0511 IP Length is:1342 CRC-32check OK!
the NO. 0512 IP Length is:1343 CRC-32check OK!
the NO. 0513 IP Length is:1344 CRC-32check OK!
the NO. 0514 IP Length is:1345 CRC-32check OK!
the NO. 0515 IP Length is:1346 CRC-32check OK!
the NO. 0516 IP Length is:1347 CRC-32check OK!
the NO. 0517 IP Length is:1348 CRC-32check OK!
the NO. 0518 IP Length is:1349 CRC-32check OK!
the NO. 0519 IP Length is:1350 CRC-32check OK!
the NO. 051a IP Length is:1351 CRC-32check OK!
the NO. 051b IP Length is:1352 CRC-32check OK!
the NO. 051c IP Length is:1353 CRC-32check OK!
the NO. 051d IP Length is:1354 CRC-32check OK!
the NO. 051e IP Length is:1355 CRC-32check OK!
the NO. 051f IP Length is:1356 CRC-32check OK!
the NO. 0520 IP Length is:1357 CRC-32check OK!
the NO. 0521 IP Length is:1358 CRC-32check OK!
the NO. 0522 IP Length is:1359 CRC-32check OK!
the NO. 0523 IP Length is:1360 CRC-32check OK!
the NO. 0524 IP Length is:1361 CRC-32check OK!
the NO. 0525 IP Length is:1362 CRC-32check OK!
the NO. 0526 IP Length is:1363 CRC-32check OK!
the NO. 0527 IP Length is:1364 CRC-32check OK!
the NO. 0528 IP Length is:1365 CRC-32check OK!
the NO. 0529 IP Length is:1366 CRC-32check OK!
the NO. 052a IP Length is:1367 CRC-32check OK!
the NO. 052b IP Length is:1368 CRC-32check OK!
the NO. 052c IP Length is:1369 CRC-32check OK!
the NO. 052d IP Length is:1370 CRC-32check OK!
the NO. 052e IP Length is:1371 CRC-32check OK!
the NO. 052f IP Length is:1372 CRC-32check OK!
the NO. 0530 IP Length is:1373 CRC-32check OK!
the NO. 0531 IP Length is:1374 CRC-32check OK!
the NO. 0532 IP Length is:1375 CRC-32check OK!
the NO. 0533 IP Length is:1376 CRC-32check OK!
the NO. 0534 IP Length is:1377 CRC-32check OK!
the NO. 0535 IP Length is:1378 CRC-32check OK!
the NO. 0536 IP Length is:1379 CRC-32check OK!
the NO. 0537 IP Length is:1380 CRC-32check OK!
the NO. 0538 IP Length is:1381 CRC-32check OK!
the NO. 0539 IP Length is:1382 CRC-32check OK!
the NO. 053a IP Length is:1383 CRC-32check OK!
the NO. 053b IP Length is:1384 CRC-32check OK!
the NO. 053c IP Length is:1385 CRC-32check OK!
the NO. 053d IP Length is:1386 CRC-32check OK!
the NO. 053e IP Length is:1387 CRC-32check OK!
the NO. 053f IP Length is:1388 CRC-32check OK!
the NO. 0540 IP Length is:1389 CRC-32check OK!
the NO. 0541 IP Length is:1390 CRC-32check OK!
the NO. 0542 IP Length is:1391 CRC-32check OK!
the NO. 0543 IP Length is:1392 CRC-32check OK!
the NO. 0544 IP Length is:1393 CRC-32check OK!
the NO. 0545 IP Length is:1394 CRC-32check OK!
the NO. 0546 IP Length is:1395 CRC-32check OK!
the NO. 0547 IP Length is:1396 CRC-32check OK!
the NO. 0548 IP Length is:1397 CRC-32check OK!
the NO. 0549 IP Length is:1398 CRC-32check OK!
the NO. 054a IP Length is:1399 CRC-32check OK!
the NO. 054b IP Length is:1400 CRC-32check OK!
the NO. 054c IP Length is:1401 CRC-32check OK!
the NO. 054d IP Length is:1402 CRC-32check OK!
the NO. 054e IP Length is:1403 CRC-32check OK!
the NO. 054f IP Length is:1404 CRC-32check OK!
the NO. 0550 IP Length is:1405 CRC-32check OK!
the NO. 0551 IP Length is:1406 CRC-32check OK!
the NO. 0552 IP Length is:1407 CRC-32check OK!
the NO. 0553 IP Length is:1408 CRC-32check OK!
the NO. 0554 IP Length is:1409 CRC-32check OK!
the NO. 0555 IP Length is:1410 CRC-32check OK!
the NO. 0556 IP Length is:1411 CRC-32check OK!
the NO. 0557 IP Length is:1412 CRC-32check OK!
the NO. 0558 IP Length is:1413 CRC-32check OK!
the NO. 0559 IP Length is:1414 CRC-32check OK!
the NO. 055a IP Length is:1415 CRC-32check OK!
the NO. 055b IP Length is:1416 CRC-32check OK!
the NO. 055c IP Length is:1417 CRC-32check OK!
the NO. 055d IP Length is:1418 CRC-32check OK!
the NO. 055e IP Length is:1419 CRC-32check OK!
the NO. 055f IP Length is:1420 CRC-32check OK!
the NO. 0560 IP Length is:1421 CRC-32check OK!
the NO. 0561 IP Length is:1422 CRC-32check OK!
the NO. 0562 IP Length is:1423 CRC-32check OK!
the NO. 0563 IP Length is:1424 CRC-32check OK!
the NO. 0564 IP Length is:1425 CRC-32check OK!
the NO. 0565 IP Length is:1426 CRC-32check OK!
the NO. 0566 IP Length is:1427 CRC-32check OK!
the NO. 0567 IP Length is:1428 CRC-32check OK!
the NO. 0568 IP Length is:1429 CRC-32check OK!
the NO. 0569 IP Length is:1430 CRC-32check OK!
the NO. 056a IP Length is:1431 CRC-32check OK!
the NO. 056b IP Length is:1432 CRC-32check OK!
the NO. 056c IP Length is:1433 CRC-32check OK!
the NO. 056d IP Length is:1434 CRC-32check OK!
the NO. 056e IP Length is:1435 CRC-32check OK!
the NO. 056f IP Length is:1436 CRC-32check OK!
the NO. 0570 IP Length is:1437 CRC-32check OK!
the NO. 0571 IP Length is:1438 CRC-32check OK!
the NO. 0572 IP Length is:1439 CRC-32check OK!
the NO. 0573 IP Length is:1440 CRC-32check OK!
the NO. 0574 IP Length is:1441 CRC-32check OK!
the NO. 0575 IP Length is:1442 CRC-32check OK!
the NO. 0576 IP Length is:1443 CRC-32check OK!
the NO. 0577 IP Length is:1444 CRC-32check OK!
the NO. 0578 IP Length is:1445 CRC-32check OK!
the NO. 0579 IP Length is:1446 CRC-32check OK!
the NO. 057a IP Length is:1447 CRC-32check OK!
the NO. 057b IP Length is:1448 CRC-32check OK!
the NO. 057c IP Length is:1449 CRC-32check OK!
the NO. 057d IP Length is:1450 CRC-32check OK!
the NO. 057e IP Length is:1451 CRC-32check OK!
the NO. 057f IP Length is:1452 CRC-32check OK!
the NO. 0580 IP Length is:1453 CRC-32check OK!
the NO. 0581 IP Length is:1454 CRC-32check OK!
the NO. 0582 IP Length is:1455 CRC-32check OK!
the NO. 0583 IP Length is:1456 CRC-32check OK!
the NO. 0584 IP Length is:1457 CRC-32check OK!
the NO. 0585 IP Length is:1458 CRC-32check OK!
the NO. 0586 IP Length is:1459 CRC-32check OK!
the NO. 0587 IP Length is:1460 CRC-32check OK!
the NO. 0588 IP Length is:1461 CRC-32check OK!
the NO. 0589 IP Length is:1462 CRC-32check OK!
the NO. 058a IP Length is:1463 CRC-32check OK!
the NO. 058b IP Length is:1464 CRC-32check OK!
the NO. 058c IP Length is:1465 CRC-32check OK!
the NO. 058d IP Length is:1466 CRC-32check OK!
the NO. 058e IP Length is:1467 CRC-32check OK!
the NO. 058f IP Length is:1468 CRC-32check OK!
the NO. 0590 IP Length is:1469 CRC-32check OK!
the NO. 0591 IP Length is:1470 CRC-32check OK!
the NO. 0592 IP Length is:1471 CRC-32check OK!
the NO. 0593 IP Length is:1472 CRC-32check OK!
the NO. 0594 IP Length is:1473 CRC-32check OK!
the NO. 0595 IP Length is:1474 CRC-32check OK!
the NO. 0596 IP Length is:1475 CRC-32check OK!
the NO. 0597 IP Length is:1476 CRC-32check OK!
the NO. 0598 IP Length is:1477 CRC-32check OK!
the NO. 0599 IP Length is:1478 CRC-32check OK!
the NO. 059a IP Length is:1479 CRC-32check OK!
the NO. 059b IP Length is:1480 CRC-32check OK!
the NO. 059c IP Length is:1481 CRC-32check OK!
the NO. 059d IP Length is:1482 CRC-32check OK!
the NO. 059e IP Length is:1483 CRC-32check OK!
the NO. 059f IP Length is:1484 CRC-32check OK!
the NO. 05a0 IP Length is:1485 CRC-32check OK!
the NO. 05a1 IP Length is:1486 CRC-32check OK!
the NO. 05a2 IP Length is:1487 CRC-32check OK!
the NO. 05a3 IP Length is:1488 CRC-32check OK!
the NO. 05a4 IP Length is:1489 CRC-32check OK!
the NO. 05a5 IP Length is:1490 CRC-32check OK!
the NO. 05a6 IP Length is:1491 CRC-32check OK!
the NO. 05a7 IP Length is:1492 CRC-32check OK!
the NO. 05a8 IP Length is:1493 CRC-32check OK!
the NO. 05a9 IP Length is:1494 CRC-32check OK!
the NO. 05aa IP Length is:1495 CRC-32check OK!
the NO. 05ab IP Length is:1496 CRC-32check OK!
the NO. 05ac IP Length is:1497 CRC-32check OK!
the NO. 05ad IP Length is:1498 CRC-32check OK!
the NO. 05ae IP Length is:1499 CRC-32check OK!
the NO. ffff IP Length is:1500 CRC-32check OK!
//////////////////////////////////////////////////////////////////////
//// Simulation was Terminated !
//// because of received packet with SN=0xffff
/trunk/sim/rtl_sim/ncsim_sim/data/config.ini
1,7 → 16,1457
46,50,1,0,0
46,1500,1,0,0

powered by: WebSVN 2.1.0

© copyright 1999-2024 OpenCores.org, equivalent to Oliscience, all rights reserved. OpenCores®, registered trademark.