mirror of
https://gitee.com/Lyon1998/pikapython.git
synced 2025-01-29 17:22:56 +08:00
add PikaVM
This commit is contained in:
parent
2c39dd3265
commit
99ca8d30c3
9
src/PikaVM.c
Normal file
9
src/PikaVM.c
Normal file
@ -0,0 +1,9 @@
|
||||
#include "PikaVM.h"
|
||||
#include "PikaObj.h"
|
||||
#include "PikaParser.h"
|
||||
#include "dataQueueObj.h"
|
||||
#include "dataStrs.h"
|
||||
|
||||
int32_t pikaVM_run(PikaObj* self, char* pikaAsm, int32_t LineNumber) {
|
||||
return LineNumber;
|
||||
}
|
7
src/PikaVM.h
Normal file
7
src/PikaVM.h
Normal file
@ -0,0 +1,7 @@
|
||||
#ifndef __PIKA__VM__H
|
||||
#define __PIKA__VM__H
|
||||
#include "PikaObj.h"
|
||||
|
||||
int32_t pikaVM_run(PikaObj* self, char* pikaAsm, int32_t lineNumber);
|
||||
|
||||
#endif
|
Loading…
x
Reference in New Issue
Block a user