Start support for second level

This commit is contained in:
Dr-Noob
2018-03-24 18:18:31 +01:00
parent bb0fde5c8b
commit 2a81e344e6
3 changed files with 422 additions and 0 deletions

19
02h.h Normal file
View File

@@ -0,0 +1,19 @@
#ifndef __02h__
#define __02h__
/***
Cache and TLB's characteristics
***/
struct level2 {
struct cache* cache;
struct TLB* tlb;
};
struct level2* fillLevel2(struct level2* level2);
void debugLevel2(struct level2* level2);
void freeLevel2(struct level2* level2);
#endif