diff options
author | matt <matt@221aa14e-8319-0410-a670-987f0aec2ac5> | 2009-01-22 18:22:11 +0000 |
---|---|---|
committer | matt <matt@221aa14e-8319-0410-a670-987f0aec2ac5> | 2009-01-22 18:22:11 +0000 |
commit | cb10e89abd211ec37472d3b0e00903d67325096d (patch) | |
tree | 0174809c23875493613a1fa5fa1afb1de6e512ee /opencores/aemb/rtl/verilog/aeMB_sim.v | |
parent | 1a81c88e7b41cdf28a04160b8dde5e04970dcffe (diff) | |
download | uhd-cb10e89abd211ec37472d3b0e00903d67325096d.tar.gz uhd-cb10e89abd211ec37472d3b0e00903d67325096d.tar.bz2 uhd-cb10e89abd211ec37472d3b0e00903d67325096d.zip |
catching up with shawn. these aren't used here anyway.
git-svn-id: http://gnuradio.org/svn/gnuradio/trunk@10289 221aa14e-8319-0410-a670-987f0aec2ac5
Diffstat (limited to 'opencores/aemb/rtl/verilog/aeMB_sim.v')
-rw-r--r-- | opencores/aemb/rtl/verilog/aeMB_sim.v | 10 |
1 files changed, 8 insertions, 2 deletions
diff --git a/opencores/aemb/rtl/verilog/aeMB_sim.v b/opencores/aemb/rtl/verilog/aeMB_sim.v index 1e70a6317..83248e4ba 100644 --- a/opencores/aemb/rtl/verilog/aeMB_sim.v +++ b/opencores/aemb/rtl/verilog/aeMB_sim.v @@ -1,4 +1,4 @@ -/* $Id: aeMB_sim.v,v 1.1 2007/12/23 20:40:45 sybreon Exp $ +/* $Id: aeMB_sim.v,v 1.2 2008/06/06 09:36:02 sybreon Exp $ ** ** AEMB EDK 3.2 Compatible Core ** Copyright (C) 2004-2007 Shawn Tan Ser Ngiap <shawn.tan@aeste.net> @@ -104,7 +104,9 @@ module aeMB_sim (/*AUTOARG*/ wire [DW-1:0] dwb_adr = {dwb_adr_o,2'd0}; wire [1:0] wBRA = {cpu.rBRA, cpu.rDLY}; wire [3:0] wMSR = {cpu.xecu.rMSR_BIP, cpu.xecu.rMSR_C, cpu.xecu.rMSR_IE, cpu.xecu.rMSR_BE}; - + + + `ifdef AEMB_SIM_KERNEL always @(posedge cpu.gclk) begin if (cpu.gena) begin @@ -293,6 +295,7 @@ module aeMB_sim (/*AUTOARG*/ end // if (cpu.gena) end // always @ (posedge cpu.gclk) + `endif // `ifdef AEMB_SIM_KERNEL // synopsys translate_on @@ -300,6 +303,9 @@ endmodule // aeMB_sim /* $Log: aeMB_sim.v,v $ + Revision 1.2 2008/06/06 09:36:02 sybreon + single thread design + Revision 1.1 2007/12/23 20:40:45 sybreon Abstracted simulation kernel (aeMB_sim) to split simulation models from synthesis models. |