|
From: | Alice Osako |
Subject: | Re: gm2 internal compiler error report |
Date: | Thu, 14 Mar 2024 18:51:50 -0400 |
User-agent: | Mozilla Thunderbird |
Ah, thank you for pointing that out. I will change that now.Since you mentioned you wanted the code to be portable across PIM and ISO ...
On Fri, 15 Mar 2024 at 00:03, Alice Osako wrote:
TYPE
Octet = PACKEDSET OF CARDINAL [0 .. 0FFH];
PACKEDSET is only available in ISO but not PIM.
Portable across PIM and ISO would be:
TYPE Octet = CARDINAL [0 .. 255];
[Prev in Thread] | Current Thread | [Next in Thread] |