-
Notifications
You must be signed in to change notification settings - Fork 32
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Stefan
committed
May 1, 2024
1 parent
1d26bfe
commit 6152a3b
Showing
2 changed files
with
22 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -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 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -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 |