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

Subversion Repositories mips789

Compare Revisions

  • This comparison shows the changes necessary to convert path
    /
    from Rev 33 to Rev 32
    Reverse comparison

Rev 33 → Rev 32

/trunk/bench/MODELSIM/mips789_defs.v Cannot display: file marked as a binary type. svn:mime-type = application/octet-stream
trunk/bench/MODELSIM/mips789_defs.v Property changes : Deleted: svn:mime-type ## -1 +0,0 ## -application/octet-stream \ No newline at end of property Index: trunk/bench/MODELSIM/mips789_top_sim.cr.mti =================================================================== --- trunk/bench/MODELSIM/mips789_top_sim.cr.mti (revision 33) +++ trunk/bench/MODELSIM/mips789_top_sim.cr.mti (nonexistent) @@ -1 +0,0 @@ - Index: trunk/bench/MODELSIM/fifo.v =================================================================== --- trunk/bench/MODELSIM/fifo.v (revision 33) +++ trunk/bench/MODELSIM/fifo.v (nonexistent) @@ -1,158 +0,0 @@ -/****************************************************************** - * * - * Author: Liwei * - * * - * This file is part of the "mips789" project. * - * Downloaded from: * - * http://www.opencores.org/pdownloads.cgi/list/mips789 * - * * - * If you encountered any problem, please contact me via * - * Email:mcupro@opencores.org or mcupro@163.com * - * * - ******************************************************************/ - -`include "mips789_defs.v" - -module sim_fifo512_cyclone ( //just uesd for simulation in EDA tools - data, - wrreq, - rdreq, - clock, - q, - full, - empty, - rst); - - input [7:0] data; - input rst; - input wrreq; - input rdreq; - input clock; - output [7:0] q; - output full; - output empty; - - fifo fifo_ff - ( - .clk_i(clock), - .rst_i(rst), - .clear_i(1'b0), - .data_i(data), - .wen_i(wrreq), - .ren_i(rdreq), - .data_o(q), - .almost_full_o(), - .full_o(full), - .almost_empty_o(), - .empty_o(empty), - .cnt_o() - ); - -endmodule - - -//created by zhangfeifei -//modifined only for simulating by liwei -module fifo - ( - clk_i, - rst_i, - clear_i, - data_i, - wen_i, - ren_i, - data_o, - almost_full_o, - full_o, - almost_empty_o, - empty_o, - cnt_o - ); - - parameter DATA_WIDTH = 8; - parameter DEPTH = 512; - parameter CNT_WIDTH = 12; - - input clk_i; - input rst_i; - input clear_i; - - input wen_i; - input [DATA_WIDTH-1:0] data_i; - - input ren_i; - output reg[DATA_WIDTH-1:0] data_o; - output almost_full_o; - output full_o; - output almost_empty_o; - output empty_o; - output [CNT_WIDTH-1:0] cnt_o; - - reg [DATA_WIDTH-1:0] mem[0:DEPTH-1]; - - reg [CNT_WIDTH-1:0] cnt; - reg [CNT_WIDTH-2:0] read_pointer; - reg [CNT_WIDTH-2:0] write_pointer; - assign cnt_o = cnt; - - integer i; - initial - begin - for(i=0;i
trunk/bench/MODELSIM/mips789_tb.v Property changes : Deleted: svn:mime-type ## -1 +0,0 ## -application/octet-stream \ No newline at end of property Index: trunk/bench/MODELSIM/transcript =================================================================== --- trunk/bench/MODELSIM/transcript (revision 33) +++ trunk/bench/MODELSIM/transcript (nonexistent) @@ -1,11 +0,0 @@ -# Reading C:/Modeltech_5.8e/tcl/vsim/pref.tcl -# // ModelSim SE 5.8e Aug 28 2004 -# // -# // Copyright Model Technology, a Mentor Graphics Corporation company, 2004 -# // All Rights Reserved. -# // UNPUBLISHED, LICENSED SOFTWARE. -# // CONFIDENTIAL AND PROPRIETARY INFORMATION WHICH IS THE -# // PROPERTY OF MENTOR GRAPHICS CORPORATION OR ITS LICENSORS. -# // -# OpenFile "D:/mips789/bench/MODELSIM/mips789_top_sim.mpf" -# Loading project mips789_top_sim

powered by: WebSVN 2.1.0

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