Ok, I need to perform a CALL FAR to the PCI BIOS service directory (32 bit mode) to verify that the PCI BIOS is present.
NOTE: I am developing a simple disk driver for a simple operating system we are developing a college. I understand that this is very specific, but I will be doing all this from kernel code.
Suppose I already found the relevant address. What is the proper assembly language to perform a far call to a given address? Can someone post some assembly code that does a far call to a given 32-bit address? The syntax of the examples I have seen so far has been confusing.
Thanks!
EDIT: In my specific case, I have already found the PCI BIOS service directory, which gives me the physical address (32-bit). Given this 32-bit address, what type of far call will I need? For example, I was reading in the Intel manuals that far calls can change tasks and what not. How will I know what I have to do to far call this PCI BIOS service directory physical address?
UPDATE:
Here is some code I found which is confusing me (inline):
asm("lcall (%%edi)"
: "=a" (return_code),
"=b" (address),
"=c" (length),
"=d" (entry)
: "0" (service),
"1" (0),
"D" (&bios32_indirect));
I found that in this source file: http://www.pell.portland.or.us/~orc/Code/Archive/linux-1.2.13/arch/i386/kernel/bios32.c
I think what I want to do is the equivalent of the above inline in actual assembly.
