mirror of
https://github.com/YosysHQ/yosys
synced 2025-08-10 05:00:52 +00:00
presentation progress
This commit is contained in:
parent
c13c5b9b7b
commit
821156b6cf
10 changed files with 265 additions and 12 deletions
1
manual/PRESENTATION_ExAdv/.gitignore
vendored
Normal file
1
manual/PRESENTATION_ExAdv/.gitignore
vendored
Normal file
|
@ -0,0 +1 @@
|
|||
*.dot
|
6
manual/PRESENTATION_ExAdv/Makefile
Normal file
6
manual/PRESENTATION_ExAdv/Makefile
Normal file
|
@ -0,0 +1,6 @@
|
|||
|
||||
all: select_01.pdf
|
||||
|
||||
select_01.pdf: select_01.v select_01.ys
|
||||
../../yosys select_01.ys
|
||||
|
15
manual/PRESENTATION_ExAdv/select_01.v
Normal file
15
manual/PRESENTATION_ExAdv/select_01.v
Normal file
|
@ -0,0 +1,15 @@
|
|||
module test(clk, s, a, y);
|
||||
input clk, s;
|
||||
input [15:0] a;
|
||||
output [15:0] y;
|
||||
reg [15:0] b, c;
|
||||
|
||||
always @(posedge clk) begin
|
||||
b <= a;
|
||||
c <= b;
|
||||
end
|
||||
|
||||
wire [15:0] state_a = (a ^ b) + c;
|
||||
wire [15:0] state_b = (a ^ b) - c;
|
||||
assign y = !s ? state_a : state_b;
|
||||
endmodule
|
10
manual/PRESENTATION_ExAdv/select_01.ys
Normal file
10
manual/PRESENTATION_ExAdv/select_01.ys
Normal file
|
@ -0,0 +1,10 @@
|
|||
read_verilog select_01.v
|
||||
hierarchy -check -top test
|
||||
proc; opt
|
||||
cd test
|
||||
select -set cone_a state_a %ci*:-$dff
|
||||
select -set cone_b state_b %ci*:-$dff
|
||||
select -set cone_ab @cone_a @cone_b %i
|
||||
show -prefix select_01 -format pdf -notitle \
|
||||
-color red @cone_ab -color magenta @cone_a \
|
||||
-color blue @cone_b
|
Loading…
Add table
Add a link
Reference in a new issue