Git Product home page Git Product logo

microzed-custom-ip's People

Stargazers

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

Watchers

 avatar  avatar  avatar  avatar  avatar

microzed-custom-ip's Issues

trouble instantiating vhd files into peripheral.

I am trying to follow the tutorial: http://www.fpgadeveloper.com/2014/08/creating-a-custom-ip-block-in-vivado.html#comment-61211. I do steps 2-5. The line where I found reg_data_out <= slv_reg1; is within this block of code in my_multiplier_v1_0_S00_AXI.v:
always @(*)
begin
if ( S_AXI_ARESETN == 1'b0 )
reg_data_out <= 0;
end
else
begin
// Address decoding for reading registers
case ( axi_araddr[ADDR_LSB+OPT_MEM_ADDR_BITS:ADDR_LSB] )
2'h0 : reg_data_out <= slv_reg0;
2'h1 : reg_data_out <= multiplier_out; // changed from reg_data_out <= slv_reg1, N Harrison 6/24.
2'h2 : reg_data_out <= slv_reg2;
2'h3 : reg_data_out <= slv_reg3;
default : reg_data_out <= 0;
endcase
end
end

I change it in step 5. However, I cannot follow step 6. I do not see where “slv_reg1” needs to be replaced with with “multiplier_out” and when I save, I do not notice that the “multiplier.vhd” file has been integrated into the hierarchy (step 8).

Can you please post a copy of your my_multiplier_v1_0_S00_AXI.v file so i can compare to my own?

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.