Minor stylistic changes
This commit is contained in:
parent
b92dd51101
commit
eaeeb49612
14
Core/gb.h
14
Core/gb.h
@ -47,9 +47,15 @@
|
|||||||
#endif
|
#endif
|
||||||
|
|
||||||
#ifdef GB_BIG_ENDIAN
|
#ifdef GB_BIG_ENDIAN
|
||||||
#define GB_REGISTER_ORDER a,f,b,c,d,e,h,l;
|
#define GB_REGISTER_ORDER a, f, \
|
||||||
|
b, c, \
|
||||||
|
d, e, \
|
||||||
|
h, l
|
||||||
#else
|
#else
|
||||||
#define GB_REGISTER_ORDER f,a,c,b,e,d,l,h;
|
#define GB_REGISTER_ORDER f, a, \
|
||||||
|
c, b, \
|
||||||
|
e, d, \
|
||||||
|
l, h
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
typedef struct {
|
typedef struct {
|
||||||
@ -342,7 +348,7 @@ typedef union {
|
|||||||
pc;
|
pc;
|
||||||
};
|
};
|
||||||
struct {
|
struct {
|
||||||
uint8_t GB_REGISTER_ORDER
|
uint8_t GB_REGISTER_ORDER;
|
||||||
};
|
};
|
||||||
} GB_registers_t;
|
} GB_registers_t;
|
||||||
|
|
||||||
@ -380,7 +386,7 @@ struct GB_gameboy_internal_s {
|
|||||||
pc;
|
pc;
|
||||||
};
|
};
|
||||||
struct {
|
struct {
|
||||||
uint8_t GB_REGISTER_ORDER
|
uint8_t GB_REGISTER_ORDER;
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
uint8_t ime;
|
uint8_t ime;
|
||||||
|
Loading…
Reference in New Issue
Block a user