]> iEval git - clump.git/blobdiff - gcram.v
Get rid of flash.v
[clump.git] / gcram.v
diff --git a/gcram.v b/gcram.v
index 7e618e276f931ff68a09170d93748dd061d6ff9b..0f0c701ae8636268ae44c07ee033a609fb76d3ce 100644 (file)
--- a/gcram.v
+++ b/gcram.v
@@ -1,6 +1,6 @@
 module GCRAM
-(input clk, input we, input[12:0] addr, input[15:0] di, output reg [15:0] do, output reg [15:0] result);
-   reg [15:0] mem [255:0];
+(input clk, input we, input[12:0] addr, input[15:0] di, output reg [15:0] do);
+   reg [15:0] mem [4095:0];
 
    always @ (posedge clk)
         do <= #1 mem[addr];
@@ -9,9 +9,6 @@ module GCRAM
         if (we)
           mem[addr] <= #1 di;
 
-   always @ (posedge clk)
-        result <= mem[6];
-
    initial begin
          mem[ 0] <= 0;                     // (cdr part of NIL)
          mem[ 1] <= 0;                     // (car part of NIL)
This page took 0.024193 seconds and 4 git commands to generate.