Allow specifying range end as a size

This commit is contained in:
Lauri Kasanen
2022-10-27 18:19:44 +03:00
parent ad7c5a6617
commit c95c9c2749
4 changed files with 24 additions and 4 deletions

View File

@@ -372,6 +372,14 @@ Again:
return;
}
/* Decimal number offset? */
if (C == '+') {
NextChar ();
InfoIVal = GetDecimalToken ();
InfoTok = INFOTOK_OFFSET_INTCON;
return;
}
/* Other characters */
switch (C) {