You are not logged in.
Pages: 1
Help
How to this asm code
mov dx,3d4h
mov al,0F
mov ah,byte [tty_cursor]
out dx,ax
mov al,0E
mov ah,byte [tty_cursor+1]
out dx,ax
replace to ASM C code AT&T?
Offline
Are you talking about inline ASM? If so that depends on the compiler but here is a link to inline asm in gcc:http://www.ibiblio.org/gferg/ldp/GCC-In … HOWTO.html . I hope that helps.
Offline
AT&T ASM syntax is a pain in the a*** when you're used to Intel code. I used it years ago to write fast Win32 apps with the LCC-Win32 compiler. Search the net, there's plenty of documentation on AT&T assembler syntax.
Don't panic!
Offline
Pages: 1