An implementation of small preemptive operating system kernel on 8086 processor.
.
├── h # headers (.h files)
│ ├── defin.h
│ ├── event.h
│ ├── idle.h
│ ├── ivtEntry.h
│ ├── kernev.h
│ ├── kernsem.h
│ ├── mainTh.h
│ ├── pcb.h
│ ├── pcblist.h
│ ├── schedule.h
│ ├── semaphor.h
│ ├── sigList.h
│ ├── thread.h
│ └── timer.h
├── lib # libraries
│ └── applicat.lib
├── src # sources (.cpp files)
│ ├── defin.cpp
│ ├── event.cpp
│ ├── idle.cpp
│ ├── ivtEntry.cpp
│ ├── kernev.cpp
│ ├── kernsem.cpp
│ ├── main.cpp
│ ├── mainTh.cpp
│ ├── pcb.cpp
│ ├── pcblist.cpp
│ ├── semaphor.cpp
│ ├── sigList.cpp
│ ├── thread.cpp
│ └── timer.cpp
├── test # public test
│ ├── bounded.cpp
│ ├── bounded.h
│ ├── intLock.cpp
│ ├── intLock.h
│ ├── keyevent.cpp
│ ├── keyevent.h
│ ├── user.cpp
│ └── user.h
├── Projektni zadatak 2019.pdf
└── README.md