mirror of
https://github.com/allaunthefox/Research-Stack.git
synced 2026-07-31 03:05:21 +00:00
22 lines
540 B
C
22 lines
540 B
C
/*
|
|
* Tardygrada — Executor
|
|
* Takes a compiled program and runs it on the VM.
|
|
* Spawns agents, sets values, starts MCP server.
|
|
*/
|
|
|
|
#ifndef TARDY_EXEC_H
|
|
#define TARDY_EXEC_H
|
|
|
|
#include "compiler.h"
|
|
#include "../vm/vm.h"
|
|
#include "../mcp/server.h"
|
|
|
|
/* Execute a compiled program on the VM.
|
|
* Spawns all agents, then starts MCP server.
|
|
*/
|
|
int tardy_exec(tardy_vm_t *vm, const tardy_program_t *prog);
|
|
|
|
/* Execute and serve — compile file, run on VM, start MCP server */
|
|
int tardy_exec_file(const char *path);
|
|
|
|
#endif /* TARDY_EXEC_H */
|