OpenCores
URL https://opencores.org/ocsvn/xulalx25soc/xulalx25soc/trunk

Subversion Repositories xulalx25soc

[/] [xulalx25soc/] [trunk/] [rtl/] [cpu/] [zipcounter.v] - Diff between revs 21 and 70

Go to most recent revision | Show entire file | Details | Blame | View Log

Rev 21 Rev 70
Line 68... Line 68...
                else if (i_ce)
                else if (i_ce)
                        o_wb_data <= o_wb_data + 1;
                        o_wb_data <= o_wb_data + 1;
 
 
        initial o_int = 0;
        initial o_int = 0;
        always @(posedge i_clk)
        always @(posedge i_clk)
                if (i_ce)
                o_int <= (i_ce)&&(&o_wb_data);
                        o_int <= &o_wb_data;
 
                else
 
                        o_int <= 1'b0;
 
 
 
        initial o_wb_ack = 1'b0;
        initial o_wb_ack = 1'b0;
        always @(posedge i_clk)
        always @(posedge i_clk)
                o_wb_ack <= (i_wb_cyc)&&(i_wb_stb);
                o_wb_ack <= (i_wb_cyc)&&(i_wb_stb);
        assign  o_wb_stall = 1'b0;
        assign  o_wb_stall = 1'b0;

powered by: WebSVN 2.1.0

© copyright 1999-2024 OpenCores.org, equivalent to Oliscience, all rights reserved. OpenCores®, registered trademark.