2019-09-18 16:18:04 -07:00
|
|
|
#ifndef ARM_SIDE_CODE_H
|
|
|
|
|
#define ARM_SIDE_CODE_H
|
|
|
|
|
|
|
|
|
|
enum{
|
2019-09-22 14:25:09 -07:00
|
|
|
ARM_TEST_DATA_EXCHANGE = 0,
|
|
|
|
|
ARM_TEST_TSC2101_READ_ADC_VALUES,
|
2019-09-18 16:18:04 -07:00
|
|
|
TOTAL_ARM_TESTS
|
2019-09-22 13:26:43 -07:00
|
|
|
};
|
2019-09-18 16:18:04 -07:00
|
|
|
|
2019-09-22 13:26:43 -07:00
|
|
|
#if 0
|
2019-09-18 16:18:04 -07:00
|
|
|
/*
|
2019-09-22 13:26:43 -07:00
|
|
|
userData68KP is a uint32_t arg list and return buffer
|
|
|
|
|
The number of the test to run is userData68KP[0] and userData68KP[>=1] is the arguments to the test and return data from it
|
|
|
|
|
All data in the arg list is in little endian format, 68K must convert to/from when calling
|
|
|
|
|
*/
|
2019-09-18 16:18:04 -07:00
|
|
|
unsigned long runTest(const void* emulStateP, void* userData68KP, /*Call68KFuncType*/void* call68KFuncP);
|
2019-09-22 13:26:43 -07:00
|
|
|
#endif
|
2019-09-18 16:18:04 -07:00
|
|
|
|
|
|
|
|
#endif
|