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

Subversion Repositories oms8051mini

[/] [oms8051mini/] [trunk/] [rtl/] [lib/] [dble_reg.v] - Rev 27

Go to most recent revision | Compare with Previous | Blame | View Log

//////////////////////////////////////////////////////////////////////
////                                                              ////
////  OMS 8051 cores common library Module                        ////
////                                                              ////
////  This file is part of the OMS 8051 cores project             ////
////  http://www.opencores.org/cores/oms8051mini/                 ////
////                                                              ////
////  Description                                                 ////
////  OMS 8051 definitions.                                       ////
////                                                              ////
////  To Do:                                                      ////
////    nothing                                                   ////
////                                                              ////
////  Author(s):                                                  ////
////      - Dinesh Annayya, dinesha@opencores.org                 ////
////                                                              ////
////  Revision : Nov 26, 2016                                     //// 
////                                                              ////
//////////////////////////////////////////////////////////////////////
////                                                              ////
//// Copyright (C) 2000 Authors and OPENCORES.ORG                 ////
////                                                              ////
//// This source file may be used and distributed without         ////
//// restriction provided that this copyright statement is not    ////
//// removed from the file and that any derivative work contains  ////
//// the original copyright notice and the associated disclaimer. ////
////                                                              ////
//// This source file is free software; you can redistribute it   ////
//// and/or modify it under the terms of the GNU Lesser General   ////
//// Public License as published by the Free Software Foundation; ////
//// either version 2.1 of the License, or (at your option) any   ////
//// later version.                                               ////
////                                                              ////
//// This source is distributed in the hope that it will be       ////
//// useful, but WITHOUT ANY WARRANTY; without even the implied   ////
//// warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR      ////
//// PURPOSE.  See the GNU Lesser General Public License for more ////
//// details.                                                     ////
////                                                              ////
//// You should have received a copy of the GNU Lesser General    ////
//// Public License along with this source; if not, download it   ////
//// from http://www.opencores.org/lgpl.shtml                     ////
////                                                              ////
//////////////////////////////////////////////////////////////////////
 
 
/***************************************************************
  Description:
	Synchronizes the pulse from one clock to another
 * clock domain
***********************************************************************/
module half_dup_dble_reg (
		   //outputs
		   sync_out_pulse,
		   //inputs
		   in_pulse,
		   dest_clk,
		   reset_n);
 
  output sync_out_pulse; //output synchronised to slow clock
  input	 in_pulse;       //input based on fast clock, pulse
  input	 dest_clk;           //slow clock
  input	 reset_n;
 
  reg	 s1_sync_out,d_sync_out,s2_sync_out;
 
  //double register the data in the slow clock domain
  always @(posedge dest_clk or negedge reset_n)
    begin
      if (!reset_n)
	begin
	  s1_sync_out <= 0;
	  s2_sync_out <= 0;
	  d_sync_out <= 0;
	end // if (reset_n)
      else
	begin
	  s1_sync_out <= in_pulse;
	  s2_sync_out <= s1_sync_out;
	  d_sync_out <= s2_sync_out;
	end // else: !if(reset_n)
    end // always @ (posedge dest_clk  or negedge reset_n)
 
  assign sync_out_pulse = d_sync_out;
 
endmodule // dble_reg
 
 
 
 
 
 
 

Go to most recent revision | Compare with Previous | Blame | View Log

powered by: WebSVN 2.1.0

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