1

add vorgabe03 + initial bump allocator

This commit is contained in:
churl
2022-05-06 11:28:20 +02:00
parent ab7a9c2ecb
commit 4ee0b701d7
17 changed files with 472 additions and 59 deletions

10
c_os/user/MyObj.h Normal file
View File

@ -0,0 +1,10 @@
#ifndef __MyObj_INCLUDE_H_
#define __MyObj_INCLUDE_H_
class MyObj {
public:
MyObj(unsigned int val) : value(val) {};
unsigned int value;
};
#endif