mirror of
https://github.com/FunKey-Project/picodrive-irixxxx.git
synced 2026-04-14 23:15:31 +02:00
fixes for big endian support (svp drc, libpicofe update)
This commit is contained in:
@@ -38,8 +38,13 @@ typedef union
|
||||
{
|
||||
unsigned int v;
|
||||
struct {
|
||||
#if CPU_IS_LE
|
||||
unsigned short l;
|
||||
unsigned short h;
|
||||
#else
|
||||
unsigned short h;
|
||||
unsigned short l;
|
||||
#endif
|
||||
};
|
||||
} ssp_reg_t;
|
||||
|
||||
|
||||
Submodule platform/libpicofe updated: dfe767a5fa...ebcff59309
Reference in New Issue
Block a user