Giter VIP home page Giter VIP logo

Comments (5)

Obijuan avatar Obijuan commented on May 15, 2024

I am attaching the icestudio project file

test2-nok.ice.zip

from icestudio.

Jesus89 avatar Jesus89 commented on May 15, 2024

Ok. It seems to be a problem of self-connectivity. Because the q_n wire and the d wire are the same.

from icestudio.

Jesus89 avatar Jesus89 commented on May 15, 2024

Btw, vclk signal should not be there. What commit are you using? The current commit generates this output (the bug is still)

// Code generated by Icestudio 0.3.0-beta3-dev
// Wed, 08 Feb 2017 19:35:02 GMT

`default_nettype none

module main (
 input vd5501f,
 output v834948,
 output [0:6] vinit
);
 wire w0;
 wire w1;
 wire w2;
 assign w0 = vd5501f;
 assign v834948 = w1;
 main_v9ef512 v9ef512 (
  .clk(w0),
  .q(w1),
  .q_n(w2)
 );
 assign vinit = 7'b0000000;
endmodule

module main_v9ef512 (
 input d,
 input clk,
 output q,
 output q_n
);
 reg qi = 0;
 always @(posedge clk)
   qi <= d;
 assign q = qi;
 assign q_n = ~qi;
endmodule

from icestudio.

Jesus89 avatar Jesus89 commented on May 15, 2024

I think it is solved: 59792cd

from icestudio.

Obijuan avatar Obijuan commented on May 15, 2024

It works! :-)
Thanks!!!

from icestudio.

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.