I am having troubles using objdump in windows command prompt for a C program. I want to display the machine code of a specific function and lines. For example, in Linux I would enter:
objdump -D x.out | grep -A20 main.:
What would the equivalent be in windows?
I am just digging into understanding machine code, so forgive me if my assumptions are incorrect or imprecise.