Converting C to ASM to specs and then to a working Z/80 Speccy tape
Published on: 2025-06-30 06:17:09
✨ ls to rust via an objdump . You can see the code here: Daniel Joyce used the techniques described in this post to porttovia an. You can see the code here: https://github.com/DanielJoyce/ls-rs . Keen, to see more examples - get in contact if you ship something!
Damien Guard nerd sniped me and other folks wanted more proof that it is now cheap, easy and possible to cheaply rewrite software or clone existing "source available" businesses (see bottom of the post).
So, let's get cracking by creating a toy application by sending this prompt to the LLM.
Create a sales tax calculator in C
Food is taxed at 10%
Personal Hygine is at 0%
Everything else 25%
Which creates
#include #include #include // Tax rates #define FOOD_TAX 0.10 #define HYGIENE_TAX 0.00 #define DEFAULT_TAX 0.25 // Item categories #define FOOD 1 #define HYGIENE 2 #define OTHER 3 int getCategory() { char choice; printf("Enter item category (F for Food, H for Hygiene, O for Other): "); scan
... Read full article.