Home > Blockchain >  Why function that refers to a global function in the same section can only be solved at link time wh
Why function that refers to a global function in the same section can only be solved at link time wh

Time:12-14

I have this assembly file prog.S :

    .text
#------------------------------main----------------------------------
    .globl main
    .type main,@function
main:
pushl            
  • Related