From 2899362bc10be6180f11a2dc04407f3bf40ae243 Mon Sep 17 00:00:00 2001 From: Stefan Koelle <50440224+skoelle@users.noreply.github.com> Date: Fri, 3 Jan 2025 19:24:16 +0100 Subject: [PATCH] Update README.md --- README.md | 10 ++++++++-- 1 file changed, 8 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 35aa9cb..f6ab4bc 100644 --- a/README.md +++ b/README.md @@ -2,16 +2,22 @@ Textmode and Graphics Mode Lib for Turbo Pascal on DOS (Predecessor of the X-LIB Unit) ## Compile -Start compile.bat -Uses Turbo Pascal 6.0 installed in c:\progrs\tp\ +Compile.bat uses Turbo Pascal 6.0 installed in c:\progrs\tp\ +``` +compile.bat +``` ## Usage In your pascal code with add following usage +``` use textgraf +``` ## Example Graphics Mode 13 +``` case InitTextGraf of 1: begin end; end; GrafikMode($13); +```