Juste une question :
sur z80, les floats sont définis ainsi :
struct FP { byte sign; // Whether the number is positive or negative byte exponent; // Locates the decimal point byte significand[7]; // The number itself byte guard[2]; // Guard digits for mathematics };
est-ce que c'est pareil sur 68k ?