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

Symbian

开发平台:

C/C++

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