20 lines
362 B
C
20 lines
362 B
C
/*
|
|
* ConfigCalculate.h
|
|
*
|
|
* Created on: 2019年3月15日
|
|
* 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_ */
|