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

Subversion Repositories aemb

[/] [aemb/] [trunk/] [rtl/] [verilog/] [aeMB2_sim.v] - Diff between revs 92 and 99

Go to most recent revision | Show entire file | Details | Blame | View Log

Rev 92 Rev 99
Line 1... Line 1...
/* $Id: aeMB2_sim.v,v 1.1 2007-12-18 18:54:36 sybreon Exp $
/* $Id: aeMB2_sim.v,v 1.2 2007-12-29 00:31:48 sybreon Exp $
**
**
** AEMB2 SIMULATION WRAPPER
** AEMB2 SIMULATION WRAPPER
**
 
** Copyright (C) 2004-2007 Shawn Tan Ser Ngiap <shawn.tan@aeste.net>
** Copyright (C) 2004-2007 Shawn Tan Ser Ngiap <shawn.tan@aeste.net>
**
**
** This file is part of AEMB.
** This file is part of AEMB.
**
**
** AEMB is free software: you can redistribute it and/or modify it
** AEMB is free software: you can redistribute it and/or modify it
Line 40... Line 39...
   parameter FSL = 1; ///< enable FSL bus
   parameter FSL = 1; ///< enable FSL bus
   parameter DIV = 0; ///< enable hardware divider   
   parameter DIV = 0; ///< enable hardware divider   
 
 
   /*AUTOOUTPUT*/
   /*AUTOOUTPUT*/
   // Beginning of automatic outputs (from unused autoinst outputs)
   // Beginning of automatic outputs (from unused autoinst outputs)
   output [6:2]         cwb_adr_o;              // From cpu of aeMB2_edk32.v
   output [6:2]         cwb_adr_o;              // From sim of aeMB2_edk32.v
   output [31:0] cwb_dat_o;              // From cpu of aeMB2_edk32.v
   output [31:0] cwb_dat_o;              // From sim of aeMB2_edk32.v
   output [3:0]          cwb_sel_o;              // From cpu of aeMB2_edk32.v
   output [3:0]          cwb_sel_o;              // From sim of aeMB2_edk32.v
   output               cwb_stb_o;              // From cpu of aeMB2_edk32.v
   output               cwb_stb_o;              // From sim of aeMB2_edk32.v
   output [1:0]          cwb_tga_o;              // From cpu of aeMB2_edk32.v
   output [1:0]          cwb_tga_o;              // From sim of aeMB2_edk32.v
   output               cwb_wre_o;              // From cpu of aeMB2_edk32.v
   output               cwb_wre_o;              // From sim of aeMB2_edk32.v
   output [DWB-1:2]     dwb_adr_o;              // From cpu of aeMB2_edk32.v
   output [DWB-1:2]     dwb_adr_o;              // From sim of aeMB2_edk32.v
   output               dwb_cyc_o;              // From cpu of aeMB2_edk32.v
   output               dwb_cyc_o;              // From sim of aeMB2_edk32.v
   output [31:0] dwb_dat_o;              // From cpu of aeMB2_edk32.v
   output [31:0] dwb_dat_o;              // From sim of aeMB2_edk32.v
   output [3:0]          dwb_sel_o;              // From cpu of aeMB2_edk32.v
   output [3:0]          dwb_sel_o;              // From sim of aeMB2_edk32.v
   output               dwb_stb_o;              // From cpu of aeMB2_edk32.v
   output               dwb_stb_o;              // From sim of aeMB2_edk32.v
   output               dwb_tga_o;              // From cpu of aeMB2_edk32.v
   output               dwb_tga_o;              // From sim of aeMB2_edk32.v
   output               dwb_wre_o;              // From cpu of aeMB2_edk32.v
   output               dwb_wre_o;              // From sim of aeMB2_edk32.v
   output [IWB-1:2]     iwb_adr_o;              // From cpu of aeMB2_edk32.v
   output [IWB-1:2]     iwb_adr_o;              // From sim of aeMB2_edk32.v
   output               iwb_stb_o;              // From cpu of aeMB2_edk32.v
   output               iwb_stb_o;              // From sim of aeMB2_edk32.v
   output               iwb_tga_o;              // From cpu of aeMB2_edk32.v
   output               iwb_tga_o;              // From sim of aeMB2_edk32.v
   output               iwb_wre_o;              // From cpu of aeMB2_edk32.v
   output               iwb_wre_o;              // From sim of aeMB2_edk32.v
   // End of automatics
   // End of automatics
   /*AUTOINPUT*/
   /*AUTOINPUT*/
   // Beginning of automatic inputs (from unused autoinst inputs)
   // Beginning of automatic inputs (from unused autoinst inputs)
   input                cwb_ack_i;              // To cpu of aeMB2_edk32.v
   input                cwb_ack_i;              // To sim of aeMB2_edk32.v
   input [31:0]          cwb_dat_i;              // To cpu of aeMB2_edk32.v
   input [31:0]          cwb_dat_i;              // To sim of aeMB2_edk32.v
   input                dwb_ack_i;              // To cpu of aeMB2_edk32.v
   input                dwb_ack_i;              // To sim of aeMB2_edk32.v
   input [31:0]          dwb_dat_i;              // To cpu of aeMB2_edk32.v
   input [31:0]          dwb_dat_i;              // To sim of aeMB2_edk32.v
   input                iwb_ack_i;              // To cpu of aeMB2_edk32.v
   input                iwb_ack_i;              // To sim of aeMB2_edk32.v
   input [31:0]          iwb_dat_i;              // To cpu of aeMB2_edk32.v
   input [31:0]          iwb_dat_i;              // To sim of aeMB2_edk32.v
   input                sys_clk_i;              // To cpu of aeMB2_edk32.v
   input                sys_clk_i;              // To sim of aeMB2_edk32.v
   input                sys_int_i;              // To cpu of aeMB2_edk32.v
   input                sys_int_i;              // To sim of aeMB2_edk32.v
   input                sys_rst_i;              // To cpu of aeMB2_edk32.v
   input                sys_rst_i;              // To sim of aeMB2_edk32.v
   // End of automatics
   // End of automatics
   /*AUTOWIRE*/
   /*AUTOWIRE*/
 
 
   aeMB2_edk32
   aeMB2_edk32
     #(/*AUTOINSTPARAM*/
     #(/*AUTOINSTPARAM*/
Line 320... Line 319...
       */
       */
   end // if (sim.ena_i)
   end // if (sim.ena_i)
 
 
   // synopsys translate_on
   // synopsys translate_on
 
 
 
 
endmodule // aeMB2_sim
endmodule // aeMB2_sim
 
 
/* $Log: not supported by cvs2svn $ */
 
 No newline at end of file
 No newline at end of file
 
/* $Log: not supported by cvs2svn $
 
/* Revision 1.1  2007/12/18 18:54:36  sybreon
 
/* Partitioned simulation model.
 
/* */
 No newline at end of file
 No newline at end of file

powered by: WebSVN 2.1.0

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