1
0
Fork 0
mirror of https://github.com/ruby/ruby.git synced 2022-11-09 12:17:21 -05:00

Progress on x86 assembler. Encode a few simple instructions.

This commit is contained in:
Maxime Chevalier-Boisvert 2020-09-08 16:45:35 -04:00 committed by Alan Wu
parent 5cf7ccd24a
commit 8f40a62647
5 changed files with 218 additions and 28 deletions

View file

@ -1,6 +1,10 @@
# NOTE: I did not know what would be the sensible way to compile
# and run these tests from the Ruby makefile
clang -std=c99 -Wall ujit_asm.c ujit_asm_tests.c -o asm_test
clear
clang -std=gnu99 -Wall ujit_asm.c ujit_asm_tests.c -o asm_test
./asm_test
rm asm_test