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


[Up: count_millennia d1]
module pulse_per_millenniumIndex (
    clk,
    reset,
    out);

input clk;
input reset;
output out;

reg year;



pulse_per_year y1 (
    .clk(clk),
    .reset(reset),
    .out(year));


divide_by_1000 d1 (
    .clk(clk),
    .reset(reset),
    .enable(year),
    .out(out));



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/pulse_per_millennium.v

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