I'm trying to compile for the Sord M5, and am following the instructions here:
https://github.com/z88dk/z88dk/wiki/Platform---Sord-M5
My emulator is MAME, and I'm just using a very simple C program for testing:
Code: Select all
#include <stdio.h>
int main()
{
printf("Hello CGL M5 World !\n");
return 0;
}
Code: Select all
zcc +m5 -create-app program.c
Code: Select all
mame -window m5 -cart1 roms\m5_cart\basic-i.bin -cart2 d:\test.rom
https://drive.google.com/file/d/10V5C-N ... sp=sharing
If I use the options to create a tape file:
Code: Select all
zcc +m5 -create-app -subtype=tape test.c
Code: Select all
mame -window m5 -cart1 roms\m5_cart\basic-i.bin -cass d:\test.cas
https://drive.google.com/file/d/10Vv5Vd ... sp=sharing
Any idea what I'm doing wrong?
Thanks
Peter