Some housekeeping and refactoring.
This commit is contained in:
parent
cfdeb4a22f
commit
e61c68c277
7 changed files with 4 additions and 126 deletions
11
src/vm.c
11
src/vm.c
|
|
@ -7,19 +7,16 @@
|
|||
* https://opensource.org/license/isc-license-txt
|
||||
*/
|
||||
|
||||
/* Bring in split-out built-ins without changing the build system yet */
|
||||
#include "iter.c"
|
||||
#include "map.c"
|
||||
#include "string.c"
|
||||
#include "vm.h"
|
||||
#include "value.h"
|
||||
#include <stdio.h>
|
||||
#include <stdlib.h>
|
||||
#include <string.h>
|
||||
|
||||
/* Bring in split-out built-ins without changing the build system yet */
|
||||
#include "builtins_math.c"
|
||||
#include "builtins_io.c"
|
||||
#include "map.c"
|
||||
#include "builtins_string.c"
|
||||
#include "builtins_iter.c"
|
||||
|
||||
/*
|
||||
Opcode case include index (vm_case_*.inc):
|
||||
- Core/stack/frame:
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue