diff options
author | Matt Ettus <matt@ettus.com> | 2009-10-01 00:21:24 -0700 |
---|---|---|
committer | Matt Ettus <matt@ettus.com> | 2009-10-01 00:21:24 -0700 |
commit | 0a0655b56b84aa6557cdfaece206d0f5cf6ebeac (patch) | |
tree | 355546561a3484426c20de7482560a01ff5f913e /models/xlnx_glbl.v | |
parent | ac31c35bea6cad3cca5ac3d45d86a91d07e80dd8 (diff) | |
download | uhd-0a0655b56b84aa6557cdfaece206d0f5cf6ebeac.tar.gz uhd-0a0655b56b84aa6557cdfaece206d0f5cf6ebeac.tar.bz2 uhd-0a0655b56b84aa6557cdfaece206d0f5cf6ebeac.zip |
fullchip sim now compiles again, after moving eth and models over to new simple_gemac
Diffstat (limited to 'models/xlnx_glbl.v')
-rw-r--r-- | models/xlnx_glbl.v | 29 |
1 files changed, 29 insertions, 0 deletions
diff --git a/models/xlnx_glbl.v b/models/xlnx_glbl.v new file mode 100644 index 000000000..662a60e35 --- /dev/null +++ b/models/xlnx_glbl.v @@ -0,0 +1,29 @@ +module xlnx_glbl
+(
+ GSR,
+ GTS
+);
+
+ //--------------------------------------------------------------------------
+ // Parameters
+ //--------------------------------------------------------------------------
+
+ //--------------------------------------------------------------------------
+ // IO declarations
+ //--------------------------------------------------------------------------
+
+ output GSR;
+ output GTS;
+
+ //--------------------------------------------------------------------------
+ // Local declarations
+ //--------------------------------------------------------------------------
+
+ //--------------------------------------------------------------------------
+ // Internal declarations
+ //--------------------------------------------------------------------------
+
+ assign GSR = 0;
+ assign GTS = 0;
+
+endmodule
|