User guide

25-17
Source Protection
initial begin
Wfmoe = 256’b0;
for (Ifmoe = 0; (Ifmoe < 8); Ifmoe = (Ifmoe + 1)) begin : Bimoe
reg [0:34] Timoe;
Timoe = Sfmoe[Ifmoe];
$display("iPb[%0h]=%b, %h", Ifmoe, Sfmoe[Ifmoe],
(Sfmoe[Ifmoe] >> 3));
Wfmoe = Hgmoe(Afmoe, Timoe[0:31], Ifmoe);
end
end
endmodule
Notice that comments are not included in the mangled file.
The following is the mangled code in tokens.v produced by the
-Xmangle=4 option:
‘portcoerce
‘inline
// No timescale specified
module demo(modulus1, cpuData);
input[7:0] modulus1;
output[255:0] cpuData;
integer cpuTmpCnt;
reg [255:0] cpuDatareg;
reg [0:34] iPb[0:10];
assign cpuData = cpuDatareg;
function [0:255] merge_word;
input[0:255] source_line;
input[0:31] source_word;
input[0:2] word_index;