From 724d077860e103631605f09a7de35e3ad8796f56 Mon Sep 17 00:00:00 2001 From: Johannes Stoelp Date: Sun, 5 Feb 2023 18:35:26 +0100 Subject: qemu: cheap insn trace example --- src/tools/qemu-src/Makefile | 9 +++++++++ 1 file changed, 9 insertions(+) create mode 100644 src/tools/qemu-src/Makefile (limited to 'src/tools/qemu-src/Makefile') diff --git a/src/tools/qemu-src/Makefile b/src/tools/qemu-src/Makefile new file mode 100644 index 0000000..1d21811 --- /dev/null +++ b/src/tools/qemu-src/Makefile @@ -0,0 +1,9 @@ +test: test.s + as -o test.o test.s + ld -o test test.o testc.o + +trace: test + qemu-x86_64 -singlestep -d nochain,cpu ./test 2>&1 | awk '/RIP/ { print $$1; }' + +clean: + $(RM) test test-bin test.o -- cgit v1.2.3