X-Git-Url: http://git.ieval.ro/?a=blobdiff_plain;f=gcram.v;h=6b5406187bf30563477d00fc93442ec580ec5d1c;hb=eb54e6d0b78c3d1c4edcc2f213f971e2e1922bac;hp=7e618e276f931ff68a09170d93748dd061d6ff9b;hpb=3f6eb730003a296f425587b10ea084778bf09a6e;p=yule.git diff --git a/gcram.v b/gcram.v index 7e618e2..6b54061 100644 --- a/gcram.v +++ b/gcram.v @@ -1,5 +1,5 @@ module GCRAM -(input clk, input we, input[12:0] addr, input[15:0] di, output reg [15:0] do, output reg [15:0] result); +(input clk, input we, input[12:0] addr, input[15:0] di, output reg [15:0] do); reg [15:0] mem [255:0]; always @ (posedge clk) @@ -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)