>>105764548There you go:
% objdump -S -M intel target/x86_64-unknown-linux-gnu/release/nostd-project
target/x86_64-unknown-linux-gnu/release/nostd-project: file format elf64-x86-64
Disassembly of section .text:
0000000000201000 <.text>:
201000: be e8 00 20 00 mov esi,0x2000e8
201005: ba 0e 00 00 00 mov edx,0xe
20100a: b8 01 00 00 00 mov eax,0x1
20100f: bf 01 00 00 00 mov edi,0x1
201014: 0f 05 syscall
201016: b8 3c 00 00 00 mov eax,0x3c
20101b: 31 ff xor edi,edi
20101d: 0f 05 syscall
20101f: 0f 0b ud2
All of this is generated with core because without core it would be empty ELF with no code at all.