This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#include <stdio.h> | |
#include <stdlib.h> | |
#include <string.h> | |
const int VM_SIZE = 256; | |
const int PAGE_SIZE = 256; | |
const int TLB_SIZE = 16; | |
const int MM_SIZE = 256; | |
int main(int argc, char *argv[]) { |