Branch exchange (BX)#
consider this simple code
int main() {
/* nop */
return 10;
}
produces this:

It’s almost always returning from a function, like ret in some other ISAs like AArch64.
nice read:
consider this simple code
int main() {
/* nop */
return 10;
}
produces this:
It’s almost always returning from a function, like ret in some other ISAs like AArch64.
nice read: