ddw3/tools/replace_addr_syms.sh
Filipe Rodrigues ee06c4b1af
Added helper tool to replace bytes in file.
Added helper tool to replace all addresses with symbols in assembly.
2024-08-04 16:51:58 +01:00

12 lines
185 B
Bash
Executable File

#!/bin/env bash
set -e
cargo run \
--manifest-path=tools/Cargo.toml \
--bin replace-bytes \
--release \
-- \
--r-file=<(tools/generate_addr_syms.sh) \
$(find asm/ -iname '*.s')