This is a copy of the post I've just made to my own website - copied here for your interest:
Original post:
https://projects.drogon.net/gibl/Get the code, etc.:
https://project-downloads.drogon.net/gibl/It's not Open Source, but Source Available, so make of that what you may.
===============
It's fairly well featured for a Tiny Basic. (Which is why I picked this one to base my efforts on - also I have a sort of soft-spot for the INS8060 and I own a MK14). It supports the usual 26 variables, A-Z, GOTO/GOSUB and FOR/NEXT and DO/UNTIL.
Numbers are signed 16-bits. Overflow is checked. It has a cheap PRNG that can be seeded too.
There is also byte and word indirection aka. peek/poke to manipulate and corrupt memory with and poke hardware VIAs, etc.
You can store strings and print them and do weird stuff with them if you know how to peek/poke their bytes.
There is a byte-out thing - a bit like PRINT CHR$(x) in other BASICS (It's VDU x - like the Acorn/BBC Micro one).
Also GET for single character input (non-stopping inkey, anyone?)
Memory management is left as an exercise to the user, but there is a system variable TOP that will tell you the address of the first byte of free RAM. See the sieve.tb program for an example of it being used.
It supports Hex. numbers using the
Acorn standard ampersand prefix: &CAFE and they can be printed using the ~ as in:
PRINT ~A
to print in hex. There is a call but not USR function (yet? anyone want it?) so CALL -151 or CALL &FF69 would work.
Enough for now:
Here is the blog post I made
=====================================
Who would have thought that in 2023 some idiot would write another Tiny Basic for the 6502…
Well, I was that idiot… Because: Why Not!
It all started as something else… Over the summer just past I wrote a new programming language called APRICOT with the intention of making it a tiny but usable thing on the 6502. That hasn’t happened… yet.
But in looking to make a 6502 version or APRICOT, I had a look at all the variants of Tiny Basic there are out there with the view of using one to act as a platform to help me port APRICOT… What happened instead is that I found one on an old platform I have a touch of fondness for so set about re-writing that for the 6502 instead.
That platform was the INS8060 CPU, commonly known as the SC/MP. The name of the implementation was NIBL Short for National (As in National Semiconductor) Industrial BASIC Language.
Coming in at just under 4KB of SC/MP code it was a slightly longer version of most Tiny Basics which tried to get under 2KB wherever possible… However it did have some nice features that I was interested in – namely FOR/NEXT and DO/UNTIL loops.
And given the name NIBL, I felt I had to call it something similar, so GIBL for Gordons Interactive Basic Language) was coined.
As I was rewriting it, I actually thought that the old SC/MP was going to be much more code dense that the 6502 – turns out they’re about the same, although some operations seems easier on the SC/MP due to it having 16-bit pointer registers with a variety of auto increment/decrement modes. However, the 6502 version is currently at just under 3700 bytes of code and runs much faster than the SC/MP version (for many reasons, not just that the SC/MP has a bit-serial ALU)
Download
So want to get the code? Click here …
https://project-downloads.drogon.net/gibl/But beware – it won’t run on any system other than my own Ruby board, but it might just run as a ROM in a BBC Micro – starting it will require a magic *FX command or unplug BASIC… Or Go into MODE 7, assemble it to run at &4000 load it there and off you go…
And port…
For other systems… You will need to read and edit the system.s file to work out what to you. Possibly also the data.s file too. You’ll need to provide your own routines for a number of calls to handle character IO from a terminal. However it should be no worse than porting e.g. EhBASIC for your system, so if you can get that running, then you can get GIBL running.
There are a few demo programs for it including my new Mandelbrot implementation, but be aware – Tiny Basics are not known for their speed. They do not tokenise the input like MS and newer Basics so there is a lot of string compares going on for every line of code executed.
Cheers,
-Gordon