Moved x86only tests into stdlib/regression

This commit is contained in:
Dmitry Boulytchev 2020-03-22 21:58:11 +03:00
parent e4b34a3ec1
commit eeab48ed33
39 changed files with 10 additions and 59 deletions

View file

@ -0,0 +1,7 @@
local i;
printf ("Number of commands-line arguments: %d\n", sysargs.length);
for i := 0, i < sysargs.length, i := i + 1 do
printf (" arg [%-2d] = %s\n", i, sysargs[i].string)
od