Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
Y
yosys-tests
Overview
Overview
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
lvzhengyang
yosys-tests
Commits
4c1b7236
Commit
4c1b7236
authored
May 04, 2019
by
Miodrag Milanovic
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
stop on error
parent
f23b8ba1
Hide whitespace changes
Inline
Side-by-side
Showing
10 changed files
with
10 additions
and
10 deletions
+10
-10
simple/ice40_dsp_mult/testbench.v
+1
-1
simple/ice40_dsp_mult_a_larger/testbench.v
+1
-1
simple/ice40_dsp_mult_acc/testbench.v
+1
-1
simple/ice40_dsp_mult_b_larger/testbench.v
+1
-1
simple/ice40_dsp_mult_out_larger/testbench.v
+1
-1
simple/ice40_dsp_mult_signed/testbench.v
+1
-1
simple/macc/testbench.v
+1
-1
simple/opt_lut/testbench.v
+1
-1
simple/opt_lut_ice40/testbench.v
+1
-1
simple/share_macc/testbench.v
+1
-1
No files found.
simple/ice40_dsp_mult/testbench.v
View file @
4c1b7236
...
...
@@ -75,7 +75,7 @@ module uut_macc_checker(input clk, input [15:0] A, input [15:0] B, input C, inpu
if
(
P
!=
p
)
begin
$
display
(
"ERROR: ASSERTION FAILED in %m:"
,
$
time
,
" "
,
P
,
" "
,
p
)
;
//
$stop;
$
stop
;
end
end
endmodule
simple/ice40_dsp_mult_a_larger/testbench.v
View file @
4c1b7236
...
...
@@ -75,7 +75,7 @@ module uut_macc_checker(input clk, input [15:0] A, input [17:0] B, input C, inpu
if
(
P
!=
p
)
begin
$
display
(
"ERROR: ASSERTION FAILED in %m:"
,
$
time
,
" "
,
P
,
" "
,
p
)
;
//
$stop;
$
stop
;
end
end
endmodule
simple/ice40_dsp_mult_acc/testbench.v
View file @
4c1b7236
...
...
@@ -68,7 +68,7 @@ module uut_macc_checker(input clk, input [7:0] A, input [7:0] B, input C, input
if
(
P
!=
p
)
begin
$
display
(
"ERROR: ASSERTION FAILED in %m:"
,
$
time
,
" "
,
P
,
" "
,
p
)
;
//
$stop;
$
stop
;
end
end
endmodule
simple/ice40_dsp_mult_b_larger/testbench.v
View file @
4c1b7236
...
...
@@ -75,7 +75,7 @@ module uut_macc_checker(input clk, input [24:0] A, input [17:0] B, input C, inpu
if
(
P
!=
p
)
begin
$
display
(
"ERROR: ASSERTION FAILED in %m:"
,
$
time
,
" "
,
P
,
" "
,
p
)
;
//
$stop;
$
stop
;
end
end
endmodule
simple/ice40_dsp_mult_out_larger/testbench.v
View file @
4c1b7236
...
...
@@ -75,7 +75,7 @@ module uut_macc_checker(input clk, input [15:0] A, input [15:0] B, input C, inpu
if
(
P
!=
p
)
begin
$
display
(
"ERROR: ASSERTION FAILED in %m:"
,
$
time
,
" "
,
P
,
" "
,
p
)
;
//
$stop;
$
stop
;
end
end
endmodule
simple/ice40_dsp_mult_signed/testbench.v
View file @
4c1b7236
...
...
@@ -75,7 +75,7 @@ module uut_macc_checker(input clk, input [15:0] A, input [15:0] B, input C, inpu
if
(
P
!=
p
)
begin
$
display
(
"ERROR: ASSERTION FAILED in %m:"
,
$
time
,
" "
,
P
,
" "
,
p
)
;
//
$stop;
$
stop
;
end
end
endmodule
simple/macc/testbench.v
View file @
4c1b7236
...
...
@@ -75,7 +75,7 @@ module uut_macc_checker(input clk, input [24:0] A, input [17:0] B, input C, inpu
if
(
P
!=
p
)
begin
$
display
(
"ERROR: ASSERTION FAILED in %m:"
,
$
time
,
" "
,
P
,
" "
,
p
)
;
//
$stop;
$
stop
;
end
end
endmodule
simple/opt_lut/testbench.v
View file @
4c1b7236
...
...
@@ -75,7 +75,7 @@ module uut_macc_checker(input clk, input [24:0] A, input [17:0] B, input C, inpu
if
(
P
!=
p
)
begin
$
display
(
"ERROR: ASSERTION FAILED in %m:"
,
$
time
,
" "
,
P
,
" "
,
p
)
;
//
$stop;
$
stop
;
end
end
endmodule
simple/opt_lut_ice40/testbench.v
View file @
4c1b7236
...
...
@@ -68,7 +68,7 @@ module uut_top_checker(input clk, input [2:0] A, input [2:0] B);
if
(
A
!=
B
)
begin
$
display
(
"ERROR: ASSERTION FAILED in %m:"
,
$
time
,
" "
,
A
,
" "
,
B
)
;
//
$stop;
$
stop
;
end
end
endmodule
simple/share_macc/testbench.v
View file @
4c1b7236
...
...
@@ -75,7 +75,7 @@ module uut_macc_checker(input clk, input [24:0] A, input [17:0] B, input C, inpu
if
(
P
!=
p
)
begin
$
display
(
"ERROR: ASSERTION FAILED in %m:"
,
$
time
,
" "
,
P
,
" "
,
p
)
;
//
$stop;
$
stop
;
end
end
endmodule
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment