Code Monkey home page Code Monkey logo

formal_hw_verification's Introduction

formal_hw_verification's People

Contributors

cmarqu avatar tmeissner avatar umarcor avatar

Stargazers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

Watchers

 avatar  avatar  avatar  avatar  avatar  avatar

formal_hw_verification's Issues

FIFO empty flag calculation wrong when reading from empty FIFO

Maybe the FIFO is empty after reset. If one write & read then at the same time, the FIFO don't goes out of empty state. This is caused by the condition to deassert the empty flag:

if (Wen_i = '1' and Ren_i = '0') then
  if ((s_write_pnt = s_read_pnt - 1) or
      (s_write_pnt = t_fifo_mem'high and s_read_pnt = t_fifo_mem'low)) then
    Full_o <= '1';
  end if;
  Empty_o <= '0';
end if;

At the same time, an read is ignored when FIFO is empty (and an read error is asserted). So the data is written into the FIFO memory but not read. Write pointer is incremented, read pointer not. So, the FIFO should be not empty after the first data was written into it, as the read from the empty FIFO before was ignored.

It's awful that these bug wasn't found by the formal checks. It shows that such simple low-level checks are not only tedious to write, but also often only incompletely test the design behaviour.

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.