mirror of
https://github.com/RaySollium99/picodrive.git
synced 2025-09-05 15:27:46 -04:00
fixes for big endian support (svp drc, libpicofe update)
This commit is contained in:
parent
0c948e2c82
commit
4da84f9454
2 changed files with 6 additions and 1 deletions
|
@ -38,8 +38,13 @@ typedef union
|
||||||
{
|
{
|
||||||
unsigned int v;
|
unsigned int v;
|
||||||
struct {
|
struct {
|
||||||
|
#if CPU_IS_LE
|
||||||
unsigned short l;
|
unsigned short l;
|
||||||
unsigned short h;
|
unsigned short h;
|
||||||
|
#else
|
||||||
|
unsigned short h;
|
||||||
|
unsigned short l;
|
||||||
|
#endif
|
||||||
};
|
};
|
||||||
} ssp_reg_t;
|
} ssp_reg_t;
|
||||||
|
|
||||||
|
|
|
@ -1 +1 @@
|
||||||
Subproject commit dfe767a5facc30a07e0fdda2b85cf39662ec3fed
|
Subproject commit ebcff5930934425d379ec032da141ae073b72913
|
Loading…
Add table
Add a link
Reference in a new issue