Problem with fasm
- From: suchi_01 <spamtrap@xxxxxxxxxx>
- Date: Sat, 22 Mar 2008 01:18:36 -0700 (PDT)
Hi All,
There is a complicated issue here. I have downloaded
fasm source of a driver and want to integrate it to my kernel.
However, there is a problem:
1. If i call a FASM function from within C code (kernel), it is not
able to return back to the next line in C Code
2. If i call a NASM function from within C Code, it works properly (it
returns back to next line in C Code)
Here are the code snippets:
NASM:
global <func name>
<func name>:
ret
FASM:
public <func name>
<func name>:
ret
Is there a global keyword or similar stuff in FASM?
.
- Follow-Ups:
- Re: Problem with fasm
- From: Frank Kotler
- Re: Problem with fasm
- Prev by Date: Re: Profiller for Linux
- Next by Date: Re: Problem with fasm
- Previous by thread: Profiller for Linux
- Next by thread: Re: Problem with fasm
- Index(es):
Relevant Pages
|