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
+17
View File
@@ -0,0 +1,17 @@
procedure HideCursor;assembler;
asm
mov ax,0100h
mov cx,0100h
int 10h
end;
procedure ShowCursor;assembler;
asm
mov ax,0100h
mov cx,0607h
int 10h
end;
begin
HideCursor;
end.