MuckyFoot-UrbanChaos/MuckyBasic/vm.h
2017-05-20 11:14:17 +10:00

18 lines
192 B
C

//
// The virtual machine to run our basic programs.
//
#ifndef _VM_
#define _VM_
//
// Loads the given MuckyBASIC program into memory and runs it!
//
void VM_run(CBYTE *fname);
#endif