An open API service indexing awesome lists of open source software.

https://github.com/kts-o7/os_el

Operating Systems Experiential Learning Component
https://github.com/kts-o7/os_el

Last synced: 2 months ago
JSON representation

Operating Systems Experiential Learning Component

Awesome Lists containing this project

README

        

# OS_EL
Operating Systems Experiential Learning Component

This repository includes 3 codes to simulate
i. List command
ii. Paging
iii. Memory Maps

compile the list command with
```shell
gcc Improved_List.c -o ListImp
```
Run it with
```shell
./ListImp filename
```
Similarly the Memory map and Paging files can be compiled by
``` shell
gcc MMap.c - o MemoryMap
gcc paging.c - o paging
```
To run those files the following commands can be used.
``` shell
./MemoryMap
./paging
```