summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authormatt <matt@221aa14e-8319-0410-a670-987f0aec2ac5>2009-01-22 18:22:11 +0000
committermatt <matt@221aa14e-8319-0410-a670-987f0aec2ac5>2009-01-22 18:22:11 +0000
commitcb10e89abd211ec37472d3b0e00903d67325096d (patch)
tree0174809c23875493613a1fa5fa1afb1de6e512ee
parent1a81c88e7b41cdf28a04160b8dde5e04970dcffe (diff)
downloaduhd-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
-rw-r--r--opencores/aemb/rtl/verilog/CVS/Entries16
-rw-r--r--opencores/aemb/rtl/verilog/aeMB_sim.v10
2 files changed, 16 insertions, 10 deletions
diff --git a/opencores/aemb/rtl/verilog/CVS/Entries b/opencores/aemb/rtl/verilog/CVS/Entries
index ad3a7dea6..f17d70235 100644
--- a/opencores/aemb/rtl/verilog/CVS/Entries
+++ b/opencores/aemb/rtl/verilog/CVS/Entries
@@ -1,11 +1,3 @@
-/aeMB_bpcu.v/1.4/Mon Feb 4 17:16:00 2008//
-/aeMB_core.v/1.9/Mon Feb 4 17:16:00 2008//
-/aeMB_ctrl.v/1.10/Mon Feb 4 17:16:00 2008//
-/aeMB_edk32.v/1.14/Mon Feb 4 17:16:00 2008//
-/aeMB_ibuf.v/1.10/Tue May 20 17:45:01 2008//
-/aeMB_regf.v/1.3/Mon Feb 4 17:16:00 2008//
-/aeMB_sim.v/1.1/Mon Feb 4 17:16:00 2008//
-/aeMB_xecu.v/1.12/Tue May 20 17:48:57 2008//
/aeMB2_aslu.v/1.10/Tue May 20 18:13:50 2008//
/aeMB2_bpcu.v/1.5/Tue May 20 18:13:50 2008//
/aeMB2_brcc.v/1.3/Tue May 20 18:13:50 2008//
@@ -35,4 +27,12 @@
/aeMB2_sysc.v/1.5/Tue May 20 18:13:51 2008//
/aeMB2_tpsram.v/1.3/Tue May 20 18:13:51 2008//
/aeMB2_xslif.v/1.7/Tue May 20 18:13:52 2008//
+/aeMB_bpcu.v/1.4/Thu Sep 11 02:11:12 2008//
+/aeMB_core.v/1.9/Thu Sep 11 02:11:12 2008//
+/aeMB_ctrl.v/1.10/Thu Sep 11 02:11:12 2008//
+/aeMB_edk32.v/1.14/Thu Sep 11 02:11:12 2008//
+/aeMB_ibuf.v/1.10/Thu Sep 11 02:11:12 2008//
+/aeMB_regf.v/1.3/Thu Sep 11 02:11:12 2008//
+/aeMB_sim.v/1.2/Thu Jan 22 05:50:30 2009//
+/aeMB_xecu.v/1.12/Thu Sep 11 02:11:12 2008//
D
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.