I want to enable data cache. I dont have much experience with ARM as I have mostly programmed for IA32. My understanding is that I need to enable MMU to enable ...
# include # include /* Declare global vars */ int ms; int ps; int rep; int ne; /* Create page table */ struct node{ int vp; int pf; } *pt = NULL; typedef struct node entry; void enter_params() { /* Op1 */ /* Local vars */ int i; ne = (ms / ps); /* Prompt memory size, page size, replacement policy ...