In the mid 80’s I found a cassette tape of Beatles music played by the James Last orchestra. While I sort of knew some of the music this was the first time I heard many of the songs and I preferred this orchestra version to the original!
The next time the Beatles would intrude on my life would be when I watch Red Storm for the first time in the early nineties.
I guess I have a thing for instrumental Beatles music. π
Going through some of my old C64 discs and I found a bunch of “work in progress” demo parts and routines I was playing with.
Back then I didn’t know about revision control but it was a pleasure to find these bits and pieces of code that I had completely forgotten about. Here’s a few screenshots from Vice, but it’s shocking the difference between Vice and real hardware. The cascading Ozone logo is very pale compared to what I see on another screen. Could it be the screen? Or is it the emulator?
These were found on disc 23, side 1. All those discs are littered with small files, chunks of code that I was working on before throwing them together in the Action Replay monitor.
Kids these days are spoiled with their fancy editors. π
So, apparently this is the first demo by this developer and it’s amazing. Hell of a fire effect.
I discovered this while testing the SD2IEC on my C64. Assembly64 has a “One File Top 200” directory that I was working on because the disk images have characters the filebrowser has trouble with. This small bit of bash shell script will sanitise it before viewing on a C64:
for i in *
do
mv -v "$i" "echo $i|cut -c13-|tr '[:upper:]' '[:lower:]'|tr -cd ' a-z0-9'"
done
It changes the filenames to lowercase and then removes anything but a-z, 0-9 and space and also cuts out the first 13 characters . There are still a few shortened filenames but it looks much better now.
Edit on July 8th, 2019: The SD2IEC is slow when there are lots of files in a directory, plus the directory contained other directories so I decided to move everything into directories named after the first letter of each directory with this code:
for i in *
do
new_dir=echo "$i"|cut -b 1
mkdir -p ../1/$new_dir
cp -v "$i"/* ../1/$new_dir/
done
Everything’s in sub directories of a new directory called “1”. There are multiple demos in each directory but not enough that it’s too slow. π
This is just amazing. All done on a lowly C64 by Censor Design and Fairlight. Grab the demo from csdb. Unfortunately it doesn’t work in the SD2IEC because it has a fastloader. I should buy an Ultimate II+ or Ultimate 64 shouldn’t I?
Follow along from “I Go To Rio” to “Ritmo De La Noche” to “Every Teardrop Is a Waterfall” by Coldplay. I had no idea Ritmo De La Noche had such a history!
Of course there’s a C64 version! Maduplec of BUDS/NATO/Crest fame created a SID version of Ritmo De La Noche for his 1992 Glober demo. Every time I hear that song I think of that demo. I couldn’t find it on Youtube so you’ll just have to fire up an emulator to watch the spinning globe but here’s the SID tune!
Listening to it in a Youtube video doesn’t have quite the same impact. It cuts off a bit too early as well. Perhaps rose tinted glasses and all that? It doesΒ bring back memories of typing “left arrow” L to load games from a tape and “Turbo Tape by Jeff”, the tape loader used to pack more games on to one cassette. Piracy was rife on the C64, but I still have a box of (original) game cassettes and disks in the attic.
Super Snake Simulator itself was a lot of fun too. It’s still worth checking out!
Lots of C64 Intros
Close
Ad-blocker not detected
Consider installing a browser extension that blocks ads and other malicious scripts in your browser to protect your privacy and security. Here are a few options.
uBlock Origin is a free, open source, ad blocker for your browser.
Use pi-hole if you have a spare Raspberry Pi on your network.
Set the private DNS settings on your phone to dns.adguard.com to block adverts and trackers.