[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
Re: Inline asm?
Inline assembly is part of the C++ standard I believe. I think it
is like:
asm {
...
}
However that would be gnu assembly.
It sounds to me like you're talking about assembly to access hardware
devices. In general you don't do this under linux. Instead you use
a library that does all the hardware manipulation. You might want to
take a look at SVGALib or KGI if you want to know how it works underneath.
Dennis Payne
dulsi@identicalsoftware.com