feat(a1): VM core (operands+pointer semantics, handlers, emit-cap) + RECOVER

Co-Authored-By: Claude Opus 4.8 (1M context) <noreply@anthropic.com>
This commit is contained in:
gamer147
2026-07-06 13:53:03 -04:00
parent 0cb83fcb62
commit 121686fbb1
6 changed files with 235 additions and 0 deletions

View File

@@ -0,0 +1,8 @@
namespace Age.Engine.Vm;
public sealed class Frame
{
public Dictionary<int, long> I = new(); // local-int
public Dictionary<int, long> F = new(); // local-float (raw)
public Dictionary<int, string> S = new(); // local-string
public Dictionary<int, long> P = new(); // local-ptr (holds a global address)
}