GithubHelp home page GithubHelp logo

cod-2019's Introduction

Hi, this is iBug 👋

Student @ University of Science and Technology of China

  • ✏️ C++ / Python / JavaScript / CSS / Go
  • ⚒️ Windows 10 / Ubuntu / VS Code / Microsoft Edge

More information

cod-2019's People

Contributors

ibug avatar

Stargazers

 avatar  avatar  avatar  avatar  avatar  avatar

Watchers

 avatar  avatar  avatar  avatar

cod-2019's Issues

VGA.v似乎存在问题

这个always块里对变量vc的处理似乎有问题:
`
always @(posedge clk) begin

    if (rst) begin

        hc <= 0;

        vc <= 0;

    end else if (ce) begin

        if (hc >= HD + HF + HS + HB - 1)

            hc <= 0;

        else begin

            hc <= hc + 1;

            if (vc >= VD + VF + VS + VB - 1)

                vc <= 0;

            else

                vc <= vc + 1;

        end

    end

end`

从这个代码我理解出的意思,是每次clk上升沿触发时,若满足条件使hc加1,则vc未到最大值时也会加1。但vc应该在hs低电平信号后才加1,也就是至少hc达到HD+HF+HS(即扫描完一行同步)后才会加1。
我的想法是这样的:
`
always @(posedge clk,posedge rst) begin

    if (rst) begin

        hc <= 0;

    end else if (ce) begin

        if (hc >= HD + HF + HS + HB - 1)

            hc <= 0;

        else begin

            hc <= hc + 1;

        end

    end

end

always @(posedge hs,posedge rst) begin

    if (rst) begin

        vc <= 0;

    end else if (ce) begin

        if (vc >= VD + VF + VS + VB - 1)

            vc <= 0;

        else begin

            vc <= vc + 1;

        end

    end

end

`

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.