Proper macros for simulation/normal running
[clump.git] / gcram.v
diff --git a/gcram.v b/gcram.v
index 0f68a18652b3e188750a28ce7e86debe954f4ee7..7e618e276f931ff68a09170d93748dd061d6ff9b 100644 (file)
--- a/gcram.v
+++ b/gcram.v
@@ -13,15 +13,17 @@ module GCRAM
         result <= mem[6];
 
    initial begin
-         mem[0] <= 0;
-         mem[1] <= 0;
-         mem[2] <= 16'b0010000000000000;
-         mem[3] <= 16'b0010000000000000;
-         mem[4] <= 16'd8;
-         mem[5] <= 16'b1110000000001000; /* QUOTE 8 */
-         mem[6] <= 0;
-         mem[7] <= 16'd48;
-         mem[8] <= 16'd49;
-         mem[9] <= 16'd50;
+         mem[ 0] <= 0;                     // (cdr part of NIL)
+         mem[ 1] <= 0;                     // (car part of NIL)
+         mem[ 2] <= 16'b0010000000000000;  // (cdr part of T)
+         mem[ 3] <= 16'b0010000000000000;  // (car part of T)
+         mem[ 4] <= 16'd12;                // (free storage pointer)
+         mem[ 5] <= 16'b1100000000000111;  // CALL 7
+         mem[ 6] <= 0;                     // (result of computation)
+         mem[ 7] <= 16'b0000000000001001;  // MORE 9
+         mem[ 8] <= 16'b0010000000000101;  // NUMBER 5
+         mem[ 9] <= 16'b1110000000000000;  // FUNCALL NIL
+         mem[10] <= 16'b1000000000001011;  // PROC 11
+         mem[11] <= 16'b0101111111111110;  // VAR -2
    end
 endmodule
This page took 0.009355 seconds and 4 git commands to generate.