diff options
author | Gary Wong <gtw@gnu.org> | 2020-04-02 21:35:35 -0600 |
---|---|---|
committer | Gary Wong <gtw@gnu.org> | 2020-04-02 21:35:35 -0600 |
commit | 8cc6a2fae59f7426033713a36ea47a3d21ef4a54 (patch) | |
tree | 7b1033bf57b5139ca15dc71424af3d4b7ad75456 /ecp5/pio.h | |
parent | 38efbf5dea74798326a58e1bf6b9f678d9645986 (diff) | |
download | nextpnr-8cc6a2fae59f7426033713a36ea47a3d21ef4a54.tar.gz nextpnr-8cc6a2fae59f7426033713a36ea47a3d21ef4a54.tar.bz2 nextpnr-8cc6a2fae59f7426033713a36ea47a3d21ef4a54.zip |
Remove comment about the USRMCLK primitive being untested.
Tested and verified working: the trivial configuration:
module USRMCLK( USRMCLKI, USRMCLKTS );
input USRMCLKI, USRMCLKTS;
endmodule
module top( input clk );
reg[ 24:0 ] count = 0;
always @( posedge clk ) begin
count <= count + 1'b1;
end
USRMCLK mspi( .USRMCLKI( count[ 20 ] ), .USRMCLKTS( count[ 24 ] ) );
endmodule
produces the expected output (toggling at high frequency, toggling
tri-state at lower frequency) on an LFE5U-85 when fed with an appropriate
clock. See https://bayimg.com/AAnNKAAGO for an example. The top
(magenta) trace is the MCLK line.
Diffstat (limited to 'ecp5/pio.h')
0 files changed, 0 insertions, 0 deletions