This is a simple application developed with two main purposes:
- Facilitate QEMU usage: To streamline and simplify my personal workflow when configuring and running virtual machines using the QEMU software.
- Learning C: To serve as a hands-on project to practice and solidify core concepts in the C programming language, such as code modularity, header file management, and compilation using Makefiles.
The project is modularized and organized into specific directories for better maintainability:
.
βββ headers/
β βββ checkFile.h
β βββ execVm.h
β βββ menu.h
βββ functions/
β βββ checkFile.c
β βββ execVm.c
β βββ menu.c
βββ main.c
βββ Makefile