Hello
Which processor are you targeting (HC08, EPPC, ColdFire, ....)?
CrazyCat
Hello
As far as I remember when you are building from batch you need to define 3 environment variables:
MWCIncludes, MWLibraries, MWLibraryFiles.
MWCIncludes: Define paths where compiler will look for include files (that is the one you are probably missing)
MWLibraries: Defines the paths where the linker will look for object library (in case you do not specify the library full path in the linker command line).
MWLibraryFiles: Defines the name of the library files to link to the application (in case you do not specify all library files on the linker command file).
Can you try that?
CrasyCat
We're using a HCS12.
Thanks!
Hello
The HC12 compiler does directly generate object code for the HC12 CPU. It does not generate an intermediate assembly source file.
The closest you can get to an assembly source file would be to use the options -Lasm & -Lasmc to configure the output of the disassembly listing file.
Using -Lasmc=acpesv will write only decoded instruction and function header in the listing file. Then you can adjust the listing file to get assembly source file.
I hope that helps
CrasyCat
Do you know by any chance how exactly to download the code to the board.
Thanks!