Few newbies questions
Posted: Tue Apr 05, 2005 11:00 pm
1. [asm] In Intel synatx (NASM) i've written: , what i have to write in AT&T??
2. [C] when i write code like this:
Does it call address cs:80d09h or 80d09h (physical)?
3. [linker]I've got 16bit ELF object file (gcc), and i need good linker which made 16 bit binary file. Result file have to can run in alone (it'll be OS).
Thanks.
Code: Select all
mov word [es:00h], ax
2. [C] when i write code like this:
Code: Select all
int (*something) (arguments) =0x80d09;
(*something) (arguments);
3. [linker]I've got 16bit ELF object file (gcc), and i need good linker which made 16 bit binary file. Result file have to can run in alone (it'll be OS).
Thanks.