summaryrefslogtreecommitdiff
path: root/crenshaw/build.sh
blob: 6c166f80469029f2f6c93411ecb98b698a89f54a (plain)
1
2
3
4
5
6
7
8
9
10
11
fpc main.pas 
./main < test.prog > test.asm
cat test.asm
nasm -o test.bin -f bin test.asm
#nasm -f elf32 test.asm
#gcc -m32 -march=i486 -ffreestanding -o test test.o
#objcopy -O binary --only-section=.text test test.bin
ndisasm -b32 test.bin
gcc -g -Wall -std=c99 -o emul emul.c -lunicorn -lcapstone -pthread
./emul test.bin
#./test