plxvm/src/io.h

9 lines
216 B
C
Raw Normal View History

2026-03-16 11:11:20 +01:00
#ifndef _IO_H
#define _IO_H
void CompileInput(lexer_t *L,reg_t *R,mem_t *M,index_t ioh,char *ioc);
void CompileOutput(lexer_t *L,reg_t *R,mem_t *M,index_t ioh,char *ioc);
int RunIO(context_t *C,op_t * op);
#endif