Chilly Willy wrote:The .o files are made by the compiler from the appropriate .c files using the makefile. As long as you put together the toolchain as explained in the thread on that AND have done the exports mentioned, there shouldn't be any trouble other than convert from zasm to sjasm.
As for that, you might need to change a couple items, but I can't say what as I haven't done it myself. Just look at any errors sjasm gives and correct them. It's pretty straightforward.
Okay then, I got sjasm to work, however, md.o appears not be generating. I get this upon running make:
zontar@BPC-V-L:~/Programs/GenDev/qikexample/src$ make
sjasm z80_drv1.s80
SjASM Z80 Assembler v0.39g6 -
www.xl2s.tk
Pass 1 complete (0 errors)
Pass 2 complete
Errors: 0
bintoc z80_drv1.o80
sjasm z80_drv2.s80
SjASM Z80 Assembler v0.39g6 -
www.xl2s.tk
Pass 1 complete (0 errors)
Pass 2 complete
Errors: 0
bintoc z80_drv2.o80
make: *** No rule to make target `md.o', needed by `all'. Stop.