diff options
Diffstat (limited to 'cpp/010vm')
-rw-r--r-- | cpp/010vm | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/cpp/010vm b/cpp/010vm index 2689b7c7..76ccc4bf 100644 --- a/cpp/010vm +++ b/cpp/010vm @@ -81,6 +81,7 @@ void setup_types() { Next_type_number = 1; // Mu Types Initialization. int integer = Type_number["integer"] = Next_type_number++; + Type_number["location"] = Type_number["integer"]; // wildcard type Type[integer].name = "integer"; int address = Type_number["address"] = Next_type_number++; Type[address].name = "address"; |