Add clarifying comments to VM sources

This commit is contained in:
Adrian Cable 2026-06-08 22:10:22 -07:00
parent 4e3ba25b4a
commit c07c6a7b50
2 changed files with 10 additions and 0 deletions

View file

@ -1,4 +1,9 @@
// Eternal Computer Virtual Machine with Framebuffer Support
//
// This code is intended as a minimal implementation of a fully functional VM
// for the ESI architecture. It is not intended as a 'production grade' virtual
// machine (e.g. there is no memory bounds checking) to keep the implementation
// as simple as possible.
#include <SDL3/SDL.h>
#include <stdio.h>

View file

@ -1,5 +1,10 @@
// Eternal Computer Virtual Machine (console support only)
// Executes an Eternal Software Initiative capsule (operating system + application software)
//
// This code is intended as a minimal implementation of a fully functional VM
// for the ESI architecture. It is not intended as a 'production grade' virtual
// machine (e.g. there is no memory bounds checking) to keep the implementation
// as simple as possible.
#include <stdio.h>
#include <unistd.h>