Can a LLM convert C, to ASM to specs and then to a working Z/80 Speccy tape? Yes.
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 CFood is taxed at 10%Personal Hygine is at 0%Everything else 25%Which creates#include <stdio.h>
#include <string.h>
#include <ctype.h>
// Tax rates
#define FOOD_TAX 0.10
#define...
Read more at ghuntley.com