mirror of
https://github.com/verilator/verilator.git
synced 2025-04-05 20:22:41 +00:00
Support "'dx" constants, bug1423.
This commit is contained in:
parent
9583f0d3cc
commit
1ff55c20e0
2
Changes
2
Changes
@ -6,6 +6,8 @@ The contributors that suggested a given feature are shown in []. Thanks!
|
|||||||
|
|
||||||
**** Support '#' comments in $readmem, bug1411. [Frederick Requin]
|
**** Support '#' comments in $readmem, bug1411. [Frederick Requin]
|
||||||
|
|
||||||
|
**** Support "'dx" constants, bug1423. [Udi Finkelstein]
|
||||||
|
|
||||||
**** Add error when use parameters without value, bug1424. [Peter Gerst]
|
**** Add error when use parameters without value, bug1424. [Peter Gerst]
|
||||||
|
|
||||||
**** Fix missing VL_SHIFTL_ errors, bug1412, bug1415. [Larry Lee]
|
**** Fix missing VL_SHIFTL_ errors, bug1412, bug1415. [Larry Lee]
|
||||||
|
@ -153,18 +153,16 @@ V3Number::V3Number(FileLine* fileline, const char* sourcep) {
|
|||||||
got_01 = 1;
|
got_01 = 1;
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
case 'z': case '?': {
|
case 'z': case '?': {
|
||||||
if (!m_sized) m_fileline->v3error("Unsized X/Z/? not legal in decimal constant: "<<*cp);
|
got_z = 1;
|
||||||
setAllBitsZ();
|
setAllBitsZ();
|
||||||
got_z = 1;
|
break;
|
||||||
break;
|
}
|
||||||
}
|
case 'x': {
|
||||||
case 'x': {
|
got_x = 1;
|
||||||
if (!m_sized) m_fileline->v3error("Unsized X/Z/? not legal in decimal constant: "<<*cp);
|
setAllBitsX();
|
||||||
got_x = 1;
|
break;
|
||||||
setAllBitsX();
|
}
|
||||||
break;
|
|
||||||
}
|
|
||||||
case '_': break;
|
case '_': break;
|
||||||
default: {
|
default: {
|
||||||
m_fileline->v3error("Illegal character in decimal constant: "<<*cp);
|
m_fileline->v3error("Illegal character in decimal constant: "<<*cp);
|
||||||
|
20
test_regress/t/t_const.pl
Executable file
20
test_regress/t/t_const.pl
Executable file
@ -0,0 +1,20 @@
|
|||||||
|
#!/usr/bin/perl
|
||||||
|
if (!$::Driver) { use FindBin; exec("$FindBin::Bin/bootstrap.pl", @ARGV, $0); die; }
|
||||||
|
# DESCRIPTION: Verilator: Verilog Test driver/expect definition
|
||||||
|
#
|
||||||
|
# Copyright 2004 by Wilson Snyder. This program is free software; you can
|
||||||
|
# redistribute it and/or modify it under the terms of either the GNU
|
||||||
|
# Lesser General Public License Version 3 or the Perl Artistic License
|
||||||
|
# Version 2.0.
|
||||||
|
|
||||||
|
scenarios(simulator => 1);
|
||||||
|
|
||||||
|
compile(
|
||||||
|
);
|
||||||
|
|
||||||
|
execute(
|
||||||
|
check_finished => 1,
|
||||||
|
);
|
||||||
|
|
||||||
|
ok(1);
|
||||||
|
1;
|
21
test_regress/t/t_const.v
Normal file
21
test_regress/t/t_const.v
Normal file
@ -0,0 +1,21 @@
|
|||||||
|
// DESCRIPTION: Verilator: Verilog Test module
|
||||||
|
//
|
||||||
|
// This file ONLY is placed into the Public Domain, for any use,
|
||||||
|
// without warranty, 2019 by Wilson Snyder.
|
||||||
|
|
||||||
|
module t (/*AUTOARG*/);
|
||||||
|
|
||||||
|
initial begin
|
||||||
|
// verilator lint_off WIDTH
|
||||||
|
if (32'hxxxxxxxx !== 'hx) $stop;
|
||||||
|
if (32'hzzzzzzzz !== 'hz) $stop;
|
||||||
|
if (32'h???????? !== 'h?) $stop;
|
||||||
|
if (32'hxxxxxxxx !== 'dx) $stop;
|
||||||
|
if (32'hzzzzzzzz !== 'dz) $stop;
|
||||||
|
if (32'h???????? !== 'd?) $stop;
|
||||||
|
// verilator lint_on WIDTH
|
||||||
|
$write("*-* All Finished *-*\n");
|
||||||
|
$finish;
|
||||||
|
end
|
||||||
|
|
||||||
|
endmodule
|
Loading…
Reference in New Issue
Block a user