User guide
25-18
Source Protection
reg [0:255] source_line;
reg [0:31] source_word;
reg [0:2] word_index;
begin
end
endfunction
initial begin
cpuDatareg = 256’b0;
for (cpuTmpCnt = 0; (cpuTmpCnt < 8); cpuTmpCnt =
(cpuTmpCnt + 1))
begin : assemble_incoming
reg[0:34] inData35;
inData35 = iPb[cpuTmpCnt];
$display("iPb[%0h]=%b, %h", cpuTmpCnt,
iPb[cpuTmpCnt],
(iPb[cpuTmpCnt] >> 3));
cpuDatareg = merge_word(cpuData, inData35[0:31],
cpuTmpCnt);
end
end
endmodule
The comment is removed and default compiler directives and a
comment about timescales is added.
The following is the mangled code in tokens.v produced by the
-Xmangle=12 option:
/* System Tasks:
$display
*/
‘portcoerce
‘inline
/* Source file "mangle2.v", line 1 */
// No timescale specified
module demo(modulus1, cpuData);