mirror of
https://github.com/YosysHQ/yosys
synced 2025-09-01 07:40:42 +00:00
initial import
This commit is contained in:
commit
7764d0ba1d
481 changed files with 54634 additions and 0 deletions
36
tests/simple/usb_phy_tetsts.v
Normal file
36
tests/simple/usb_phy_tetsts.v
Normal file
|
@ -0,0 +1,36 @@
|
|||
|
||||
// from usb_rx_phy
|
||||
module test01(clk, rst, rx_en, fs_ce);
|
||||
|
||||
input clk, rst;
|
||||
input rx_en;
|
||||
output reg fs_ce;
|
||||
reg [1:0] dpll_next_state;
|
||||
reg [1:0] dpll_state;
|
||||
|
||||
always @(posedge clk)
|
||||
dpll_state <= rst ? 0 : dpll_next_state;
|
||||
|
||||
always @*
|
||||
begin
|
||||
fs_ce = 1'b0;
|
||||
case(dpll_state)
|
||||
2'h0:
|
||||
if(rx_en) dpll_next_state = 2'h0;
|
||||
else dpll_next_state = 2'h1;
|
||||
2'h1:begin
|
||||
fs_ce = 1'b1;
|
||||
if(rx_en) dpll_next_state = 2'h3;
|
||||
else dpll_next_state = 2'h2;
|
||||
end
|
||||
2'h2:
|
||||
if(rx_en) dpll_next_state = 2'h0;
|
||||
else dpll_next_state = 2'h3;
|
||||
2'h3:
|
||||
if(rx_en) dpll_next_state = 2'h0;
|
||||
else dpll_next_state = 2'h0;
|
||||
endcase
|
||||
end
|
||||
|
||||
endmodule
|
||||
|
Loading…
Add table
Add a link
Reference in a new issue