Fixed osMotor bss variables.

This commit is contained in:
David Benepe
2022-02-13 13:04:59 -05:00
parent a4a55ce2b3
commit cc66641750
2 changed files with 4 additions and 8 deletions
+4 -4
View File
@@ -11,10 +11,10 @@
static void _MakeMotorData(int channel, u16 address, u8 *buffer, OSPifRam *mdata);
//TODO: These should really be declared here instead of somewhere else
extern OSPifRam _MotorStopData[MAXCONTROLLERS];
extern OSPifRam _MotorStartData[MAXCONTROLLERS];
extern u8 _motorstopbuf[BLOCKSIZE];
extern u8 _motorstartbuf[BLOCKSIZE];
OSPifRam _MotorStopData[MAXCONTROLLERS];
OSPifRam _MotorStartData[MAXCONTROLLERS];
u8 _motorstopbuf[BLOCKSIZE];
u8 _motorstartbuf[BLOCKSIZE];
s32 osMotorStop(OSPfs *pfs) {
int i;
s32 ret;
-4
View File
@@ -39,10 +39,6 @@ s32 D_801235C4;
FreeQueueSlot gFreeQueue[256];
s32 gFreeQueueCount;
s32 gFreeQueueState;
OSPifRam _MotorStopData[MAXCONTROLLERS];
OSPifRam _MotorStartData[MAXCONTROLLERS];
u8 _motorstopbuf[BLOCKSIZE];
u8 _motorstartbuf[BLOCKSIZE];
extern MemoryPoolSlot gMainMemoryPool;