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

Subversion Repositories s6soc

[/] [s6soc/] [trunk/] [rtl/] [cpu/] [ziptimer.v] - Diff between revs 8 and 16

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

Rev 8 Rev 16
Line 118... Line 118...
                        r_value <= r_reload_value;
                        r_value <= r_reload_value;
 
 
        // Set the interrupt on our last tick.
        // Set the interrupt on our last tick.
        initial o_int   = 1'b0;
        initial o_int   = 1'b0;
        always @(posedge i_clk)
        always @(posedge i_clk)
                if (i_ce)
                if (i_rst)
 
                        o_int <= 1'b0;
 
                else if (i_ce)
                o_int <= (r_running)&&(r_value == { {(VW-1){1'b0}}, 1'b1 });
                o_int <= (r_running)&&(r_value == { {(VW-1){1'b0}}, 1'b1 });
                else
                else
                        o_int <= 1'b0;
                        o_int <= 1'b0;
 
 
        initial o_wb_ack = 1'b0;
        initial o_wb_ack = 1'b0;

powered by: WebSVN 2.1.0

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