Results 1 to 2 of 2
Hello;
Can anyone tell me what ENTRY(ret_from_intr) is? Is it a function, a macro or is it something completly different? The table entry.S has a number of entries like this ...
- 01-06-2008 #1
entry.S table
Hello;
Can anyone tell me what ENTRY(ret_from_intr) is? Is it a function, a macro or is it something completly different? The table entry.S has a number of entries like this and I have not been able to find what an ENTRY() is...Thanks
- 01-09-2008 #2Just Joined!
- Join Date
- Mar 2007
- Posts
- 3
This ENTRY() is a macro. It makes up beginning code of a procedure in assembly language
Code:#define ENTRY(name) \ .align 32; \ .proc name; \ name:


Reply With Quote
