Everything plugged in and set up! |
Now I want to finish off my blog on the Intellivision ECS. It's actually the 50th anniversary of the BASIC computer language, invented in 1964 as a beginner's programming language that anyone could use. It was the primary software on almost all 80s computers, the most popular version was made by Microsoft. It slowly phased out of use with the introduction of more versatile programming languages, and better computers that didn't require the user to program anything. It's descendant still used today is Visual Basic.
This is all you get! |
The real power lied in writing and loading programs. The Intellivision loads and saves programs to cassette tapes, and you have to type in a command and go through an interesting process to load a program
Loading a program |
Displaying and running a program |
10 PRIN "HELLO"
20 PRIN "THIS IS A TEST"
30 PRIN "OF THE ECS"
The BASIC software reads the program in numerical order. You use multiples of ten when first writing the program so that it's easy to add lines later. Say you wanted to clear the screen before the program runs. You could add:
05 CLR
at the end, and it would read it first since 5 is less than 10.
I've done some experimenting with having a modern Windows 8 PC communicate with my old ECS. Obviously there was no networking or internet, so the only way they can communicate is by sending and receiving BASIC code. The videos I've made are of successfully sending a program written on the ECS to my PCS, and of a program generated by my PC being successfully recognized and loaded on the ECS. My goal is to be able to type out a program in a text file (because the ECS keyboard is hard to use, and the software is very primitive and tedious to edit programs), convert it into an audio file the ECS can understand, and load it into the ECS.
Thanks for reading, hopefully I'll have something new for you soon!
No comments:
Post a Comment