From 6152a3b477a74c7e9d28cf4cae3a8117ed53ca02 Mon Sep 17 00:00:00 2001 From: Stefan Date: Wed, 1 May 2024 11:50:59 +0200 Subject: [PATCH] All done for release of 2.0 --- Basic2/MSDOS/README.md | 7 +++++++ Basic2/RaspPi/README.md | 15 +++++++++++++++ 2 files changed, 22 insertions(+) create mode 100644 Basic2/MSDOS/README.md mode change 100644 => 100755 Basic2/RaspPi/README.md diff --git a/Basic2/MSDOS/README.md b/Basic2/MSDOS/README.md new file mode 100644 index 00000000..304a101f --- /dev/null +++ b/Basic2/MSDOS/README.md @@ -0,0 +1,7 @@ +The MSDOS code. + +Largely identical to Posix, CR added at the end of each line and hardware settings done right. + +Compile with Turbo C 2.x using + +tcc basic.c runtime.c -lm diff --git a/Basic2/RaspPi/README.md b/Basic2/RaspPi/README.md old mode 100644 new mode 100755 index e69de29b..3313d79e --- a/Basic2/RaspPi/README.md +++ b/Basic2/RaspPi/README.md @@ -0,0 +1,15 @@ +The Raspberry PI fileset of BASIC. + +Largely identical to Posix. + +Settings here are active framebuffer and PIGPIO support. + +Compile with + +gcc basic.c runtime.c -lm -lpipgpiod_lf2 + +and start pigpiod before using BASIC. + +If Wiring is activated in hardware.h compile with + +gcc basic.c runtime.c -lm -lwiringPi