afegit intèrpret ascii, doc d'API i fonts Pascal originals

This commit is contained in:
2026-05-15 09:56:56 +02:00
parent 6d6ee4b635
commit 503d25440b
61 changed files with 10929 additions and 0 deletions
+9
View File
@@ -0,0 +1,9 @@
var
fich : file of byte;
begin
Assign(fich, 'codi.exe');
reset(fich);
Write('CODI.EXE = ',filesize(fich));
Close(fich);
end.