mirror of
https://github.com/Dr-Noob/cpufetch.git
synced 2026-03-25 16:00:39 +01:00
20 lines
279 B
C
20 lines
279 B
C
#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
|