Page 1 of 1

generate an asm when compiling with cc65

Posted: Thu Jan 16, 2020 5:48 am
by funkheld
Hi good afternoon.

I want to compile a c-file with cc65.
as an output, itte would also like an asm file.
how does that work please

Thank you.
greeting

Re: generate an asm when compiling with cc65

Posted: Thu Jan 16, 2020 6:37 am
by DarwinNE
If I recall correctly, you can do things like this:

Code: Select all

cc65 inout.c --add-source -o inout.s

Re: generate an asm when compiling with cc65

Posted: Thu Jan 16, 2020 2:55 pm
by funkheld
hello, thanks for the ihfo.

greeting