I did find a MOVE from CCR instruction in the manual... http://www.freescale.com/files/archives/doc/ref_manual/M68000PRM.pdf
But I keep getting an 'invalid addressing mode' error. I've tried different forms of syntax and anyways I only want to store the carry bit, not the entire CCR. These are all syntax I've tried with no luck. It very explicitly says the size must be word.
MOVE.W CCR,D6
MOVE.W CCR,CARRY
MOVE CCR,D6
MOVE CCR,CARRY
MOVE.B CCR,D6
MOVE.B CCR,CARRY
Nada. What am I doing wrong? Is there a better way to store specifically the carry out bit (C)?