copapy/tools/create_stencil_doc.sh

11 lines
470 B
Bash
Raw Normal View History

2025-10-14 21:22:45 +00:00
#!/bin/bash
source tools/build.sh
objdump --disassembler-color=on -d -j .text src/copapy/obj/stencils_x86_64_O3.o \
| ansi2html -i > bin/stencils_x86_64_O3.html
python3 tools/make_example.py
2025-11-12 23:29:48 +00:00
python3 tools/extract_code.py "build/runner/test.copapy" "build/runner/test.copapy.bin"
objdump --disassembler-color=on -D -b binary -m i386:x86-64 --adjust-vma=0x1000 build/runner/test.copapy.bin \
| build/runner/test.copapy.asm | ansi2html -i > build/runner/test.copapy.html