-
I've been working on a function that has a lot of parameters, and when compiled as `__z88dk_callee` and with `-m8085` the compiler chooses to use `pop bc` to remove the dead parameters from the stack…
-
The init code needs a decent rewrite (I've been saying it for years, but time...), spotted this trips up:
```
char buf[256];
char *p = (char *)(buf+1); // BAD
char *q …
-
There are several issues/feature request open that are difficult to implement in the current implementation of z80asm, due to the single-pass nature of the assembler. Changes to the assembler impact t…
-
from: alvin (alvin_albrecht@hotmail.com) via lists.sourceforge.net
to: z88dk-developers@lists.sourceforge.net
date: Sat, Nov 28, 2015 at 5:33 AM
I did a test assemble with this brief code:
;…
-
[FIXED by dos2unix but we should avoid these problem for people that also use Windows or only Windows]
Maybe related to #2427.
When I try to build Horde for any Z88DK target with Cross-Lib under W…
-
So I made this script [cosize.py.txt](https://github.com/z88dk/z88dk/files/10512881/cosize.py.txt) that detect duplicate assembly
Used like so:
```
z88dk-dis -x a.map -o 32768 a.bin > dump.txt &&…
-
Tracking a strange runtime error.
I'm using the [planet motion](https://github.com/feilipu/planets) repository, which is used for testing different math libraries.
The code is working with other…
-
If I compile z88dk from source (very latest source) *under Linux* I get this weird error when I try to build my latest Cross-Lib game
SCCZ80:
```
games/stinger/main.c:715:8: error: Missing token,…
-
basic.hの`token_get()`は、戻り値を`struct Token`としています。`Token`の中身は16bitの数値2個だけとはいえ、構造体を戻り値とする関数というのは非効率な気がします。
`static Token token_get()`は`static void token_get(Token *)`として、これに対応するよう各箇所を修正するのが良さそうに思えます。と…
-
I need to build my games under any POSIX environment including both Cygwin/Windows and Linux.
For the c128 I would like to generated disk images (which I can sort of do with the c1541 tools distrib…