On Tue, Aug 30, 2022 at 10:45 AM Gregory Nutt <spudan...@gmail.com> wrote: > z8, ez80, and ZNEO using the ZiLOG ZDS-II compiler. I don't know the > current outstanding issues with that compiler. The Z80 parts currently use > SDCC but could also use one of several other open source compilers > such as Z88dk > which I know nothing about.
I know nothing about Z88DK either, except that it is at https://github.com/z88dk/z88dk and appears to be an active project. It seems worth looking into. This article (from 2016) explains some of the compiler options: https://feilipu.me/2016/09/16/z80-c-code-development-with-eclipse-and-z88dk/ Personally I am a fan of supporting as many compilers as possible. Every compiler reads the code a little bit differently and can notice and warn about different things. The more compilers you can build and run your code with, the better the chances that you catch and fix the common mistakes. If we become a project that only builds on GCC and/or clang, then I think we will miss out on a lot of valuable diagnostics. Cheers, Nathan