File tree Expand file tree Collapse file tree 2 files changed +14
-1
lines changed Expand file tree Collapse file tree 2 files changed +14
-1
lines changed Original file line number Diff line number Diff line change @@ -14,7 +14,7 @@ x86-32_engine_asm.o: x86-32_engine_asm.s
14
14
nasm -felf32 -g -o x86-32_engine_asm.o x86-32_engine_asm.s
15
15
16
16
execute-exe : mcp_forth.h mcp_forth.c global.h execute-exe.c runtime_io.c runtime_time.c runtime_string.c runtime_process.c runtime_file.c runtime_assert.c vm_engine.c x86-32_engine.c x86-32_engine_asm.o
17
- gcc $(NO_FLAGS ) -m32 -Wall -fsanitize=address -g mcp_forth.c execute-exe.c runtime_io.c runtime_time.c runtime_string.c runtime_process.c runtime_file.c runtime_assert.c runtime_threadutil.c vm_engine.c x86-32_engine.c x86-32_engine_asm.o -lpthread -o execute-exe
17
+ gcc $(NO_FLAGS ) -m32 -Wall -fsanitize=address -g mcp_forth.c execute-exe.c runtime_io.c runtime_time.c runtime_string.c runtime_process.c runtime_file.c runtime_assert.c runtime_threadutil.c vm_engine.c x86-32_engine.c x86-32_engine_asm.o -lpthread -ldl - o execute-exe
18
18
19
19
test-simple : all
20
20
find forth_programs/simple -maxdepth 1 -type f | xargs -I{} ./compile-and-run.sh vm {}
Original file line number Diff line number Diff line change
1
+ : mingle
2
+ 0x55555555
3
+ tuck
4
+ and
5
+ >r
6
+ invert
7
+ and
8
+ r>
9
+ or
10
+ ;
11
+
12
+ 7 7 3 lshift mingle . cr
13
+
You can’t perform that action at this time.
0 commit comments