Skip to content

Instantly share code, notes, and snippets.

View DhruvSondhi's full-sized avatar
🌠
Exploring the Stars 😉

Dhruv Sondhi DhruvSondhi

🌠
Exploring the Stars 😉
View GitHub Profile
@DhruvSondhi
DhruvSondhi / virtual_memory.c
Created May 3, 2022 13:41
Virtual Memory Manager CO204 OS project
#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[]) {