HowToMakeMMXFiles.txt
上传用户:zhongxx05
上传日期:2007-06-06
资源大小:33641k
文件大小:1k
源码类别:

Symbian

开发平台:

C/C++

  1. To use 'nasm' to assemble the .asm file on linux do:
  2.     nasm -DELF -felf -o elf/yuvammx.o ../yuvammx.asm
  3. To use 'nasm' to assemble the .asm for windows do:
  4.     nasm -DCOFF -fcoff -o coffyuvammx.obj ..yuvammx.asm
  5. or
  6.     nasm -DWIN32 -fwin32 -o win32yuvammx.obj ..yuvammx.asm
  7. Note: On windows 'nasm' is usually 'nasmw'.
  8. valid output formats for -f are (`*' denotes default):
  9.   * bin       flat-form binary files (e.g. DOS .COM, .SYS)
  10.     aout      Linux a.out object files
  11.     aoutb     NetBSD/FreeBSD a.out object files
  12.     coff      COFF (i386) object files (e.g. DJGPP for DOS)
  13.     elf       ELF32 (i386) object files (e.g. Linux)
  14.     as86      Linux as86 (bin86 version 0.3) object files
  15.     obj       MS-DOS 16-bit/32-bit OMF object files
  16.     win32     Microsoft Win32 (i386) object files
  17.     oldrdf    Relocatable Dynamic Object File Format v1.1
  18.     rdf       Relocatable Dynamic Object File Format v2.0
  19.     ieee      IEEE-695 (LADsoft variant) object file format