Cleaned up includes

This commit is contained in:
Veit Heller
2015-02-08 15:59:02 +01:00
parent 1de25417f4
commit 647e890e75
5 changed files with 15 additions and 13 deletions

View File

@@ -1,3 +1,10 @@
#include <stdio.h>
#include <string.h>
#include <assert.h>
#include <alloca.h>
#include "util.h"
#include "opcode.h"
#include "vm.h"
/**
@@ -39,7 +46,7 @@ void vm_execute(int code[], int ip, int datasize, unsigned long length){
while(ip < length){
int opcode = code[ip];
ip++;
if(DEBUG){
if(DEBUG_ON){
if(ip+2 != length)
disassemble(sp, fp, ip, opcode, ins, code, stack);
}