CodeWarrior header files for each processor usually have take this form:
mc9s12c32.h
I poked around with Google, and dredged up some information in a code file that indicates its a very old header, that might be found in some demo files somewhere:
/
/* Output compare program toggles the port T pin and demonstrates precision timing of task */
/* Allows a scope to be connected to PT0 to observe the time slice of 1 msec */
/* In main bits 6 and 7 alternated on. When program returns to main () from interrupt
, code in main doesn't alter LED status established in interrupt */
#include <hidef.h> /* common defines and macros */
/* Please note that the port addresses you have been defining in previous labs are defined in the
include file 6812dp256b.h */#include <mc9s12c32.h> /* derivative information */
#pragma LINK_INFO DERIVATIVE "mc9s12c32"
However, I don't have any more information than this. Sorry.