20 lines
371 B
C
20 lines
371 B
C
/*
|
||
* ConfigCalculate.h
|
||
*
|
||
* Created on: 2019<31><39>3<EFBFBD><33>15<31><35>
|
||
* Author: TiferKing
|
||
*/
|
||
|
||
#ifndef SRC_CONFIGCALCULATE_H_
|
||
#define SRC_CONFIGCALCULATE_H_
|
||
|
||
#include "xil_types.h"
|
||
|
||
#define __weak __attribute__((weak))
|
||
#define UNUSED(x) (void)x
|
||
|
||
u64 LeastCommonMultiple(u64 a, u64 b);
|
||
u64 GreatestCommonDivisor(u64 a, u64 b);
|
||
|
||
#endif /* SRC_CONFIGCALCULATE_H_ */
|