HierarchyFilesModulesSignalsTasksFunctionsHelp
/* -*-Verilog-*-
*******************************************************************************
*
* File:         divide_by_60.v
* RCS:          $Header: $
* Description:  
* Author:       Costas Calamvokis
* Language:     Verilog
* Package:      N/A
* Status:       Experimental (Do Not Distribute)
*
* Copyright (c) 1998 Costas Calamvokis, all rights reserved.
*
*******************************************************************************
*/


[Up: pulse_per_year d2][Up: pulse_per_year d3]
module divide_by_60Index (
    clk,
    reset,
    enable,
    out);

input clk;
input reset;
input enable;
output out;

reg [5:0] count;

wire  [5:0] new_count = count + 1;

assign out = (count == 6'd59);



always @(posedge clk)
    begin
    if (reset)
        begin
        count = 0;
        end
    else if (enable)
        begin
        if ( out )
            count = 0;
        else
            count = new_count;
        end
    end




endmodule

/*
 *  Click on this link to go back to v2html home page: 
 *    http:../../../v2html.html
 */    

HierarchyFilesModulesSignalsTasksFunctionsHelp

This page: Maintained by: v2html730@burbleland.com
Created:Thu Mar 24 20:07:08 2011
From: ../verilog/divide_by_60.v

Verilog converted to html by v2html 7.30.1.3 (written by Costas Calamvokis).Help