diff --git a/README.md b/README.md index 9ba5b5313..622652441 100644 --- a/README.md +++ b/README.md @@ -1,6 +1,6 @@ # Inform 7 -[Version](notes/versioning.md): 10.2.0-beta+6W69 'Krypton' (2 July 2023) +[Version](notes/versioning.md): 10.2.0-beta+6W71 'Krypton' (4 July 2023) ## About Inform diff --git a/build.txt b/build.txt index 1409f3b64..6ae75bca7 100644 --- a/build.txt +++ b/build.txt @@ -1,3 +1,3 @@ Prerelease: beta -Build Date: 2 July 2023 -Build Number: 6W69 +Build Date: 4 July 2023 +Build Number: 6W71 diff --git a/docs/Architecture16Kit/S-str.html b/docs/Architecture16Kit/S-str.html index a1577ec0c..6c8f01bac 100644 --- a/docs/Architecture16Kit/S-str.html +++ b/docs/Architecture16Kit/S-str.html @@ -51,33 +51,11 @@

How programs for this architecture start up the virtual machine.

-

§1. VM_PreInitialise() is called; then the "starting the virtual machine" -activity runs; and then VM_Initialise() is called. +

§1. VM_Check_Functionality() doesn't need to do anything in Z-Code.

-[ VM_PreInitialise;
-];
-
-[ VM_Initialise i;
-    standard_interpreter = HDR_TERPSTANDARD-->0;
-
-    dict_start = HDR_DICTIONARY-->0;
-    dict_entry_size = dict_start->(dict_start->0 + 1);
-    dict_start = dict_start + dict_start->0 + 4;
-    dict_end = dict_start + ((dict_start - 2)-->0) * dict_entry_size;
-
-    buffer->0  = INPUT_BUFFER_LEN;
-    buffer2->0 = INPUT_BUFFER_LEN;
-    buffer3->0 = INPUT_BUFFER_LEN;
-    parse->0   = 15;
-    parse2->0  = 15;
-
-    if (BasicInformKit`FIX_RNG_CFGF) {
-        @random 10000 -> i;
-        i = -i-2000;
-        @random i -> i;
-    }
+[ VM_Check_Functionality;
 ];