Hi sbob,
Thank you very much!
I'm a IC logic design engineer, and have 2 years experience. I once designed a 16-bit dsp and a 32-bit cpu.
I work in front-end, the design tools include modelsim, fpga complier etc. Ihaven't applied the verilog-xl or ncverilog. I want learn it and apply it afterward. In the area, I'm a beginner! So I hope get your help.
If the train project's source code is following, Please tell me how I modify and simulate it in verilog-xl.
module Tain_Adder_8 ();
reg [ 7:0] A,B;
reg ci;
wire [ 7:0] D;
wire Co;
assign {Co,D} = {1'b0,A} + {1'b0,B} + {1'b0,Ci};
always
# 10 {A,B,Ci} <= $random;
endmodule