Tweaking include order to avoid b0, b1, etc. macro clash, bump version.

This commit is contained in:
Brad Nelson
2023-01-14 23:14:01 -08:00
parent 75d9185027
commit d78953151a
6 changed files with 5 additions and 5 deletions

View File

@ -18,6 +18,7 @@ static char filename2[PATH_MAX];
{{bits}}
{{core}}
{{faults}}
{{calling}}
{{interp}}
{{boot}}

View File

@ -18,7 +18,6 @@
#include "common/tier2_opcodes.h"
#include "common/floats.h"
#include "common/calls.h"
#include "common/calling.h"
#define SIM_HEAP_SIZE (100 * 1024 + 1024 * 1024)
@ -47,6 +46,7 @@ PLATFORM_SIMULATED_OPCODE_LIST
#include "common/bits.h"
#include "common/core.h"
#include "common/calling.h"
#include "common/interp.h"
#include "gen/esp32_boot.h"
#include "esp32/main.cpp"

View File

@ -25,7 +25,6 @@
{{tier2_opcodes}}
{{floats}}
{{calls}}
{{calling}}
{{builtins.h}}
{{builtins.cpp}}
{{main.cpp}}