improved base and added PP defines KERNEL_UPSTREAM TESTING DEBUG

This commit is contained in:
adeliktas
2023-10-28 03:55:19 +02:00
parent a6a285b82c
commit fb5d501d88
26 changed files with 813 additions and 476 deletions

14
um/test/math_module.h Normal file
View File

@@ -0,0 +1,14 @@
#ifndef MATH_MODULE_H
#define MATH_MODULE_H
class MathModule {
public:
MathModule(); // Constructor
int add(int a, int b);
int subtract(int a, int b);
int multiply(int a, int b);
double divide(double a, double b);
};
#endif