I'm new to OS Developing and Assembler, and I've never got the thing about extrn

I couldn't find anything on Google.
Oliver
It helps if you fix your spelling and search on "extern" insteadTheDaneProgrammer wrote:I've never got the thing about extrn.
I'm guessing it depends on your assembler. I use TASM 5.0 (in MASM mode) and extern gives an error (just tried it) -- all my code uses extrn. But I suppose no one uses TASM any more.Combuster wrote:It helps if you fix your spelling and search on "extern" instead
Code: Select all
foo: public foo
... does something ...
ret
Code: Select all
extrn foo:near
call foo