Files
y_project/ypermutation_t/src/permutation_t/test/dump_asm.sh
T
2023-11-24 09:41:17 +01:00

7 lines
94 B
Bash

#!/bin/bash
objdump -d -M intel $1 > $1_intel.asm
# AT&T syntax
objdump -d $1 > $1_.asm