๐พ Archived View for bbs.geminispace.org โบ u โบ norayr โบ 21826 captured on 2024-12-17 at 15:39:44. Gemini links have been rewritten to link to archived content
-=-=-=-=-=-=-
Re: "i have this feeling about lowtech (not permacomputing) that..."
in case of 6502 you have ca65, which is part of cc65 compiler suite, it feels like gas, it has useful macros and you can define 'variables' by not really caring where they will reside in memory because default .cfg file for the platform describes it. but you dont know about that configuration file and what happening is not that transparent for you.
also cc65 is long to compile, it has big codebase. well how big can it be? it is still a hobby project and the target cpu is 6502 but still it is complex.
but there is xa, very simple assembler and almost nothing is done behind your back. you also need to explicitly mention everything. the source code of xa is smaller ...
Nov 16 ยท 4 weeks ago
๐ norayr [OP] ยท Nov 16 at 10:00:
and you understand more of what you are doing when using xa.
i have this feeling about lowtech (not permacomputing) that gcc is not lowtech. however, tcc is. we feel that c is lowtech, because it has a small syntax and it is possible to write efficient code with it, but we forget that the c we use has lots of corporate investments, lots of language extensions, and the compiler compiles in hours. tcc is lowtech, because it supports standard c without extensions and it is easy to compile it. however, it is not possible to compile linux kernes with tcc....