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

Subversion Repositories mac_layer_switch

[/] [mac_layer_switch/] [trunk/] [bench/] [verilog/] [Xbar_modules.v] - Rev 2

Compare with Previous | Blame | View Log

 
module Alignment_marker(reset,clk,Data_o,iba2xbar_start_pack,iba2xbar_end_pack,xbar2plu_start_pack,xbar2plu_end_pack);
    input reset,clk;
    input [7:0] T_q;
    input [31:0] Data_o;
    input  iba2xbar_end_pack , iba2xbar_start_pack;
    output xbar2plu_start_pack , xbar2plu_end_pack;
     reg [31:0] Data_o_delayed;
     reg flip;
 
    always @(posedge clk)
    begin
        Data_o_delayed <= Data_o;
        flip = Data_o_delayed^Data_o;
    end
 
endmodule
 

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.