X-Git-Url: https://git.gag.com/?a=blobdiff_plain;f=src%2Fz80%2Fsupport.h;h=a2902b75e8b542763885c19d561899fd6467e753;hb=c2f2abbf9d58d7f0def3509779547f50ade2e2ab;hp=cb5191263aa34e59f5eb2deed370dd774d377a58;hpb=e8af787a7af30e7d132b40a278b1d131032f3b88;p=fw%2Fsdcc diff --git a/src/z80/support.h b/src/z80/support.h index cb519126..a2902b75 100644 --- a/src/z80/support.h +++ b/src/z80/support.h @@ -7,12 +7,14 @@ typedef unsigned short WORD; typedef unsigned char BYTE; -typedef struct { +typedef struct + { WORD w[2]; BYTE b[4]; -} Z80_FLOAT; + } +Z80_FLOAT; /** Convert a native float into 'z80' format */ -int convertFloat(Z80_FLOAT *f, double native); +int convertFloat (Z80_FLOAT * f, double native); #endif