Git Product home page Git Product logo

Comments (2)

sylefeb avatar sylefeb commented on June 11, 2024

Hello Bernd,

Indeed, this is due to this part of the framework (the RST counter):

reg ready = 0;
reg [23:0] RST_d;
reg [23:0] RST_q;
always @* begin
RST_d = RST_q[23] ? RST_q : RST_q + 1;
end
always @(posedge CLK) begin
if (ready) begin
RST_q <= RST_d;
end else begin
ready <= 1;
RST_q <= 0;
end
end
wire run_main;
assign run_main = 1'b1;
M_main __main(
.clock(CLK),
.reset(~RST_q[23]),

One issue on the ice40 is that BRAMs take time to initialize and as I encountered some problems I increased the delay very significantly, likely way too much! I'll refine this to make it as short as possible.

(If you need a quick workaround you can simply replace icestick.v by the one from the master branch, but I'll to look into this soon).

from silice.

at91rm9200 avatar at91rm9200 commented on June 11, 2024

Hello Sylvain,

thank you for the explanation. I replaced icestick.v and everything is fine now.

Regards, Bernd.

from silice.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.