search for: fun_off

Displaying 1 result from an estimated 1 matches for "fun_off".

Did you mean: aux_off
2009 Jun 01
1
Exporting real-mode functions
A question was asked on the IRC channel about how to get the address of a real-mode symbol -- or any assembly symbol in general. The answer is that you have to declare it global. In NASM syntax: global func func: In GAS syntax: .globl func func: -- H. Peter Anvin, Intel Open Source Technology Center I work for Intel. I don't speak on their behalf.