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

Subversion Repositories s1_core

[/] [s1_core/] [trunk/] [hdl/] [rtl/] [sparc_core/] [sparc_ifu_lfsr5.v] - Diff between revs 105 and 113

Show entire file | Details | Blame | View Log

Rev 105 Rev 113
Line 16... Line 16...
// You should have received a copy of the GNU General Public
// You should have received a copy of the GNU General Public
// License along with this work; if not, write to the Free Software
// License along with this work; if not, write to the Free Software
// Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA.
// Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA.
// 
// 
// ========== Copyright Header End ============================================
// ========== Copyright Header End ============================================
 
`ifdef SIMPLY_RISC_TWEAKS
 
`define SIMPLY_RISC_SCANIN .si(0)
 
`else
 
`define SIMPLY_RISC_SCANIN .si()
 
`endif
////////////////////////////////////////////////////////////////////////
////////////////////////////////////////////////////////////////////////
/*
/*
//  Module Name: sparc_ifu_lfsr5
//  Module Name: sparc_ifu_lfsr5
//  Description:
//  Description:
//  The IFQ is the icache input queue.  This communicates between the
//  The IFQ is the icache input queue.  This communicates between the
Line 74... Line 79...
                q_next = q;
                q_next = q;
     end // always @ (...
     end // always @ (...
 
 
   assign out = {q[0], q[2]};
   assign out = {q[0], q[2]};
 
 
   dff #(5) lfsr_reg(.din  (q_next),
   dff_s #(5) lfsr_reg(.din  (q_next),
                     .q    (q),
                     .q    (q),
                     .clk  (clk), .se(se), .si(), .so());
                     .clk  (clk), .se(se), `SIMPLY_RISC_SCANIN, .so());
 
 
endmodule // sparc_ifu_lfsr5
endmodule // sparc_ifu_lfsr5
 
 
 
 
 
 

powered by: WebSVN 2.1.0

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