I have the IDT setup to call assembly functions. Some of these then call a C function.
This is the code I use to call the C function:
Code: Select all
mov eax, _isrhandler
call eax
Code: Select all
call _isrhandler
Can anyone explain how this works?
Code: Select all
mov eax, _isrhandler
call eax
Code: Select all
call _isrhandler