generally, it's: `.vector_table + .text + .rodata`, you can tell by the memory addresses (which are in flash). another hacky way is to make an actual bin file, e.g. ``` cargo objcopy --release -- -O bin target/demo.bin ls -al target/demo.bin ```