mirror of
https://github.com/adriancable/eternal.git
synced 2026-07-09 17:29:16 +00:00
Add clarifying comments to VM sources
This commit is contained in:
parent
4e3ba25b4a
commit
c07c6a7b50
2 changed files with 10 additions and 0 deletions
5
vm/vm.c
5
vm/vm.c
|
|
@ -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>
|
||||
|
|
|
|||
|
|
@ -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>
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue