实例介绍
Ubuntu交叉编译OpenCV时需要安装的yasm库,亲测可用。
【实例截图】
【核心代码】
yasm-1.3.0.tar
└── yasm-1.3.0
├── ABOUT-NLS
├── aclocal.m4
├── Artistic.txt
├── AUTHORS
├── BSD.txt
├── ChangeLog
├── cmake
│ ├── CMakeLists.txt
│ └── modules
│ ├── CMakeLists.txt
│ ├── DummyCFile.c
│ ├── VersionGen.cmake
│ └── YasmMacros.cmake
├── CMakeLists.txt
├── config
│ ├── compile
│ ├── config.guess
│ ├── config.rpath
│ ├── config.sub
│ ├── depcomp
│ ├── install-sh
│ ├── missing
│ ├── mkinstalldirs
│ └── test-driver
├── config.h.cmake
├── config.h.in
├── configure
├── configure.ac
├── ConfigureChecks.cmake
├── COPYING
├── frontends
│ ├── CMakeLists.txt
│ ├── Makefile.inc
│ ├── tasm
│ │ ├── CMakeLists.txt
│ │ ├── Makefile.inc
│ │ ├── tasm.c
│ │ ├── tasm-options.c
│ │ └── tasm-options.h
│ ├── vsyasm
│ │ ├── CMakeLists.txt
│ │ ├── Makefile.inc
│ │ └── vsyasm.c
│ └── yasm
│ ├── CMakeLists.txt
│ ├── genstring.py
│ ├── Makefile.inc
│ ├── yasm.c
│ ├── yasm-options.c
│ ├── yasm-options.h
│ ├── yasm-plugin.c
│ ├── yasm-plugin.h
│ └── yasm.xml
├── genstring.c
├── GNU_GPL-2.0
├── GNU_LGPL-2.0
├── INSTALL
├── libyasm
│ ├── arch.h
│ ├── assocdat.c
│ ├── assocdat.h
│ ├── bc-align.c
│ ├── bc-data.c
│ ├── bc-incbin.c
│ ├── bc-org.c
│ ├── bc-reserve.c
│ ├── bitvect.c
│ ├── bitvect.h
│ ├── bytecode.c
│ ├── bytecode.h
│ ├── CMakeLists.txt
│ ├── cmake-module.c
│ ├── compat-queue.h
│ ├── coretype.h
│ ├── dbgfmt.h
│ ├── errwarn.c
│ ├── errwarn.h
│ ├── expr.c
│ ├── expr.h
│ ├── file.c
│ ├── file.h
│ ├── floatnum.c
│ ├── floatnum.h
│ ├── genmodule.c
│ ├── hamt.c
│ ├── hamt.h
│ ├── insn.c
│ ├── insn.h
│ ├── intnum.c
│ ├── intnum.h
│ ├── inttree.c
│ ├── inttree.h
│ ├── linemap.c
│ ├── linemap.h
│ ├── listfmt.h
│ ├── Makefile.inc
│ ├── md5.c
│ ├── md5.h
│ ├── mergesort.c
│ ├── module.h
│ ├── module.in
│ ├── objfmt.h
│ ├── parser.h
│ ├── phash.c
│ ├── phash.h
│ ├── preproc.h
│ ├── section.c
│ ├── section.h
│ ├── strcasecmp.c
│ ├── strsep.c
│ ├── symrec.c
│ ├── symrec.h
│ ├── tests
│ │ ├── 1shl0.asm
│ │ ├── 1shl0.hex
│ │ ├── absloop-err.asm
│ │ ├── absloop-err.errwarn
│ │ ├── bitvect_test.c
│ │ ├── charconst64.asm
│ │ ├── charconst64.hex
│ │ ├── combpath_test.c
│ │ ├── data-rawvalue.asm
│ │ ├── data-rawvalue.hex
│ │ ├── duplabel-err.asm
│ │ ├── duplabel-err.errwarn
│ │ ├── emptydata.asm
│ │ ├── emptydata.hex
│ │ ├── equ-expand.asm
│ │ ├── equ-expand.hex
│ │ ├── expr-fold-level.asm
│ │ ├── expr-fold-level.hex
│ │ ├── expr-simplify-identity.asm
│ │ ├── expr-simplify-identity.hex
│ │ ├── expr-wide-ident.asm
│ │ ├── expr-wide-ident.hex
│ │ ├── externdef.asm
│ │ ├── externdef.errwarn
│ │ ├── externdef.hex
│ │ ├── floatnum_test.c
│ │ ├── incbin.asm
│ │ ├── incbin.hex
│ │ ├── jmpsize1.asm
│ │ ├── jmpsize1-err.asm
│ │ ├── jmpsize1-err.errwarn
│ │ ├── jmpsize1.hex
│ │ ├── leb128_test.c
│ │ ├── libyasm_test.sh
│ │ ├── Makefile.inc
│ │ ├── opt-align1.asm
│ │ ├── opt-align1.hex
│ │ ├── opt-align2.asm
│ │ ├── opt-align2.hex
│ │ ├── opt-align3.asm
│ │ ├── opt-align3.hex
│ │ ├── opt-circular1-err.asm
│ │ ├── opt-circular1-err.errwarn
│ │ ├── opt-circular2-err.asm
│ │ ├── opt-circular2-err.errwarn
│ │ ├── opt-circular3-err.asm
│ │ ├── opt-circular3-err.errwarn
│ │ ├── opt-gvmat64.asm
│ │ ├── opt-gvmat64.hex
│ │ ├── opt-immexpand.asm
│ │ ├── opt-immexpand.hex
│ │ ├── opt-immnoexpand.asm
│ │ ├── opt-immnoexpand.hex
│ │ ├── opt-oldalign.asm
│ │ ├── opt-oldalign.hex
│ │ ├── opt-struc.asm
│ │ ├── opt-struc.hex
│ │ ├── reserve-err1.asm
│ │ ├── reserve-err1.errwarn
│ │ ├── reserve-err2.asm
│ │ ├── reserve-err2.errwarn
│ │ ├── splitpath_test.c
│ │ ├── strucsize.asm
│ │ ├── strucsize.hex
│ │ ├── times0.asm
│ │ ├── times0.hex
│ │ ├── timesfwd.asm
│ │ ├── timesfwd.hex
│ │ ├── timesover-err.asm
│ │ ├── timesover-err.errwarn
│ │ ├── times-res.asm
│ │ ├── times-res.errwarn
│ │ ├── times-res.hex
│ │ ├── timesunder.asm
│ │ ├── timesunder.hex
│ │ ├── unary.asm
│ │ ├── unary.hex
│ │ ├── uncstring_test.c
│ │ ├── value-err.asm
│ │ ├── value-err.errwarn
│ │ ├── value-mask.asm
│ │ ├── value-mask.errwarn
│ │ ├── value-mask.hex
│ │ ├── value-samesym.asm
│ │ ├── value-samesym.errwarn
│ │ ├── value-samesym.hex
│ │ ├── value-shr-symexpr.asm
│ │ └── value-shr-symexpr.hex
│ ├── valparam.c
│ ├── valparam.h
│ ├── value.c
│ ├── value.h
│ ├── xmalloc.c
│ └── xstrdup.c
├── libyasm.h
├── libyasm-stdint.h.cmake
├── m4
│ ├── ax_create_stdint_h.m4
│ ├── codeset.m4
│ ├── cython.m4
│ ├── gettext.m4
│ ├── glibc21.m4
│ ├── iconv.m4
│ ├── intdiv0.m4
│ ├── intmax.m4
│ ├── inttypes_h.m4
│ ├── inttypes.m4
│ ├── inttypes-pri.m4
│ ├── isc-posix.m4
│ ├── lcmessage.m4
│ ├── lib-ld.m4
│ ├── lib-link.m4
│ ├── lib-prefix.m4
│ ├── longdouble.m4
│ ├── longlong.m4
│ ├── Makefile.inc
│ ├── nls.m4
│ ├── po.m4
│ ├── printf-posix.m4
│ ├── progtest.m4
│ ├── pythonhead.m4
│ ├── signed.m4
│ ├── size_max.m4
│ ├── stdint_h.m4
│ ├── uintmax_t.m4
│ ├── ulonglong.m4
│ ├── wchar_t.m4
│ ├── wint_t.m4
│ └── xsize.m4
├── Makefile.am
├── Makefile.in
├── Mkfiles
│ ├── dj
│ │ ├── config.h
│ │ ├── libyasm-stdint.h
│ │ └── YASM-VERSION.h
│ ├── Makefile.dj
│ ├── Makefile.flat
│ ├── vc10
│ │ ├── config.h
│ │ ├── crt_secure_no_deprecate.props
│ │ ├── crt_secure_no_deprecate.vsprops
│ │ ├── genmacro
│ │ │ ├── genmacro.vcxproj
│ │ │ ├── genmacro.vcxproj.filters
│ │ │ └── run.bat
│ │ ├── genmodule
│ │ │ ├── genmodule.vcxproj
│ │ │ ├── genmodule.vcxproj.filters
│ │ │ └── run.bat
│ │ ├── genperf
│ │ │ ├── genperf.vcxproj
│ │ │ ├── genperf.vcxproj.filters
│ │ │ └── run.bat
│ │ ├── genstring
│ │ │ ├── genstring.vcxproj
│ │ │ ├── genstring.vcxproj.filters
│ │ │ └── run.bat
│ │ ├── genversion
│ │ │ ├── genversion.vcxproj
│ │ │ ├── genversion.vcxproj.filters
│ │ │ └── run.bat
│ │ ├── libyasm
│ │ │ ├── libyasm.vcxproj
│ │ │ └── libyasm.vcxproj.filters
│ │ ├── libyasm-stdint.h
│ │ ├── modules
│ │ │ ├── modules.vcxproj
│ │ │ └── modules.vcxproj.filters
│ │ ├── out_copy_rename.bat
│ │ ├── re2c
│ │ │ ├── re2c.vcxproj
│ │ │ ├── re2c.vcxproj.filters
│ │ │ └── run.bat
│ │ ├── readme.vc10.txt
│ │ ├── vsyasm.props
│ │ ├── vsyasm.targets
│ │ ├── vsyasm.vcxproj
│ │ ├── vsyasm.xml
│ │ ├── yasm.sln
│ │ ├── yasm.vcxproj
│ │ ├── yasm.vcxproj.filters
│ │ ├── YASM-VERSION.h
│ │ └── ytasm.vcxproj
│ ├── vc12
│ │ ├── config.h
│ │ ├── crt_secure_no_deprecate.props
│ │ ├── crt_secure_no_deprecate.vsprops
│ │ ├── libyasm
│ │ │ ├── libyasm.vcxproj
│ │ │ └── libyasm.vcxproj.filters
│ │ ├── modules
│ │ │ ├── modules.vcxproj
│ │ │ └── modules.vcxproj.filters
│ │ ├── out_copy_rename.bat
│ │ ├── readme.vc12.txt
│ │ ├── vsyasm.props
│ │ ├── vsyasm.targets
│ │ ├── vsyasm.vcxproj
│ │ ├── vsyasm.xml
│ │ ├── yasm.sln
│ │ ├── yasm.vcxproj
│ │ ├── yasm.vcxproj.filters
│ │ ├── YASM-VERSION.h
│ │ └── ytasm.vcxproj
│ └── vc9
│ ├── config.h
│ ├── crt_secure_no_deprecate.vsprops
│ ├── genmacro
│ │ ├── genmacro.vcproj
│ │ └── run.bat
│ ├── genmodule
│ │ ├── genmodule.vcproj
│ │ └── run.bat
│ ├── genperf
│ │ ├── genperf.vcproj
│ │ └── run.bat
│ ├── genstring
│ │ ├── genstring.vcproj
│ │ └── run.bat
│ ├── genversion
│ │ ├── genversion.vcproj
│ │ └── run.bat
│ ├── libyasm
│ │ └── libyasm.vcproj
│ ├── libyasm-stdint.h
│ ├── modules
│ │ └── modules.vcproj
│ ├── re2c
│ │ ├── re2c.vcproj
│ │ └── run.bat
│ ├── readme.vc9.txt
│ ├── vc98_swap.py
│ ├── vsyasm.vcproj
│ ├── yasm.rules
│ ├── yasm.sln
│ ├── yasm.vcproj
│ ├── YASM-VERSION.h
│ └── ytasm.vcproj
├── modules
│ ├── arch
│ │ ├── CMakeLists.txt
│ │ ├── lc3b
│ │ │ ├── CMakeLists.txt
│ │ │ ├── lc3barch.c
│ │ │ ├── lc3barch.h
│ │ │ ├── lc3bbc.c
│ │ │ ├── lc3bid.re
│ │ │ ├── Makefile.inc
│ │ │ └── tests
│ │ │ ├── lc3b-basic.asm
│ │ │ ├── lc3b-basic.errwarn
│ │ │ ├── lc3b-basic.hex
│ │ │ ├── lc3b-br.asm
│ │ │ ├── lc3b-br.hex
│ │ │ ├── lc3b-ea-err.asm
│ │ │ ├── lc3b-ea-err.errwarn
│ │ │ ├── lc3b-mp22NC.asm
│ │ │ ├── lc3b-mp22NC.hex
│ │ │ ├── lc3b_test.sh
│ │ │ └── Makefile.inc
│ │ ├── Makefile.inc
│ │ ├── x86
│ │ │ ├── CMakeLists.txt
│ │ │ ├── gen_x86_insn.py
│ │ │ ├── Makefile.inc
│ │ │ ├── tests
│ │ │ │ ├── addbyte.asm
│ │ │ │ ├── addbyte.errwarn
│ │ │ │ ├── addbyte.hex
│ │ │ │ ├── addrop.asm
│ │ │ │ ├── addrop-err.asm
│ │ │ │ ├── addrop-err.errwarn
│ │ │ │ ├── addrop.errwarn
│ │ │ │ ├── addrop.hex
│ │ │ │ ├── aes.asm
│ │ │ │ ├── aes.hex
│ │ │ │ ├── amd200707.asm
│ │ │ │ ├── amd200707.hex
│ │ │ │ ├── amd-fma4.asm
│ │ │ │ ├── amd-fma4.hex
│ │ │ │ ├── arithsmall.asm
│ │ │ │ ├── arithsmall.errwarn
│ │ │ │ ├── arithsmall.hex
│ │ │ │ ├── avx16.asm
│ │ │ │ ├── avx16.hex
│ │ │ │ ├── avx2.asm
│ │ │ │ ├── avx2.hex
│ │ │ │ ├── avx.asm
│ │ │ │ ├── avxcc.asm
│ │ │ │ ├── avxcc.hex
│ │ │ │ ├── avx.hex
│ │ │ │ ├── bittest.asm
│ │ │ │ ├── bittest.hex
│ │ │ │ ├── bmi1.asm
│ │ │ │ ├── bmi1.hex
│ │ │ │ ├── bmi2.asm
│ │ │ │ ├── bmi2.hex
│ │ │ │ ├── bswap64.asm
│ │ │ │ ├── bswap64.hex
│ │ │ │ ├── clmul.asm
│ │ │ │ ├── clmul.hex
│ │ │ │ ├── cmpxchg.asm
│ │ │ │ ├── cmpxchg.hex
│ │ │ │ ├── cpubasic-err.asm
│ │ │ │ ├── cpubasic-err.errwarn
│ │ │ │ ├── cyrix.asm
│ │ │ │ ├── cyrix.hex
│ │ │ │ ├── div-err.asm
│ │ │ │ ├── div-err.errwarn
│ │ │ │ ├── ea-nonzero.asm
│ │ │ │ ├── ea-nonzero.hex
│ │ │ │ ├── ea-over.asm
│ │ │ │ ├── ea-over.errwarn
│ │ │ │ ├── ea-over.hex
│ │ │ │ ├── ea-warn.asm
│ │ │ │ ├── ea-warn.errwarn
│ │ │ │ ├── ea-warn.hex
│ │ │ │ ├── ebpindex.asm
│ │ │ │ ├── ebpindex.hex
│ │ │ │ ├── effaddr.asm
│ │ │ │ ├── effaddr.hex
│ │ │ │ ├── enter.asm
│ │ │ │ ├── enter.errwarn
│ │ │ │ ├── enter.hex
│ │ │ │ ├── eptvpid.asm
│ │ │ │ ├── eptvpid.hex
│ │ │ │ ├── f16c.asm
│ │ │ │ ├── f16c.hex
│ │ │ │ ├── far64.asm
│ │ │ │ ├── far64.hex
│ │ │ │ ├── farbasic.asm
│ │ │ │ ├── farbasic.hex
│ │ │ │ ├── farithr.asm
│ │ │ │ ├── farithr.hex
│ │ │ │ ├── fcmov.asm
│ │ │ │ ├── fcmov.hex
│ │ │ │ ├── fma.asm
│ │ │ │ ├── fma.hex
│ │ │ │ ├── fsgsbase.asm
│ │ │ │ ├── fsgsbase.hex
│ │ │ │ ├── fwdequ64.asm
│ │ │ │ ├── fwdequ64.hex
│ │ │ │ ├── gas32
│ │ │ │ │ ├── align32.asm
│ │ │ │ │ ├── align32.hex
│ │ │ │ │ ├── gas32-jmpcall.asm
│ │ │ │ │ ├── gas32-jmpcall.hex
│ │ │ │ │ ├── gas-farithr.asm
│ │ │ │ │ ├── gas-farithr.hex
│ │ │ │ │ ├── gas-farjump.asm
│ │ │ │ │ ├── gas-farjump.hex
│ │ │ │ │ ├── gas-fpmem.asm
│ │ │ │ │ ├── gas-fpmem.hex
│ │ │ │ │ ├── gas-invlpg.asm
│ │ │ │ │ ├── gas-invlpg.hex
│ │ │ │ │ ├── gas-loop32.asm
│ │ │ │ │ ├── gas-loop32.hex
│ │ │ │ │ ├── gas-movdq32.asm
│ │ │ │ │ ├── gas-movdq32.hex
│ │ │ │ │ ├── gas-movsd.asm
│ │ │ │ │ ├── gas-movsd.hex
│ │ │ │ │ ├── gas-pop.asm
│ │ │ │ │ ├── gas-pop.hex
│ │ │ │ │ ├── Makefile.inc
│ │ │ │ │ └── x86_gas32_test.sh
│ │ │ │ ├── gas64
│ │ │ │ │ ├── align64.asm
│ │ │ │ │ ├── align64.hex
│ │ │ │ │ ├── gas64-jmpcall.asm
│ │ │ │ │ ├── gas64-jmpcall.hex
│ │ │ │ │ ├── gas-cbw.asm
│ │ │ │ │ ├── gas-cbw.hex
│ │ │ │ │ ├── gas-fp.asm
│ │ │ │ │ ├── gas-fp.hex
│ │ │ │ │ ├── gas-inout.asm
│ │ │ │ │ ├── gas-inout.hex
│ │ │ │ │ ├── gas-loop64.asm
│ │ │ │ │ ├── gas-loop64.hex
│ │ │ │ │ ├── gas-moreinsn.asm
│ │ │ │ │ ├── gas-moreinsn.hex
│ │ │ │ │ ├── gas-movabs.asm
│ │ │ │ │ ├── gas-movabs.hex
│ │ │ │ │ ├── gas-movdq64.asm
│ │ │ │ │ ├── gas-movdq64.hex
│ │ │ │ │ ├── gas-movsxs.asm
│ │ │ │ │ ├── gas-movsxs.hex
│ │ │ │ │ ├── gas-muldiv.asm
│ │ │ │ │ ├── gas-muldiv.hex
│ │ │ │ │ ├── gas-prefix.asm
│ │ │ │ │ ├── gas-prefix.errwarn
│ │ │ │ │ ├── gas-prefix.hex
│ │ │ │ │ ├── gas-retenter.asm
│ │ │ │ │ ├── gas-retenter.hex
│ │ │ │ │ ├── gas-shift.asm
│ │ │ │ │ ├── gas-shift.hex
│ │ │ │ │ ├── Makefile.inc
│ │ │ │ │ ├── riprel.asm
│ │ │ │ │ ├── riprel.hex
│ │ │ │ │ └── x86_gas64_test.sh
│ │ │ │ ├── gen-fma-test.py
│ │ │ │ ├── genopcode.asm
│ │ │ │ ├── genopcode.hex
│ │ │ │ ├── imm64.asm
│ │ │ │ ├── imm64.errwarn
│ │ │ │ ├── imm64.hex
│ │ │ │ ├── invpcid.asm
│ │ │ │ ├── invpcid.hex
│ │ │ │ ├── iret.asm
│ │ │ │ ├── iret.hex
│ │ │ │ ├── jmp64-1.asm
│ │ │ │ ├── jmp64-1.hex
│ │ │ │ ├── jmp64-2.asm
│ │ │ │ ├── jmp64-2.hex
│ │ │ │ ├── jmp64-3.asm
│ │ │ │ ├── jmp64-3.hex
│ │ │ │ ├── jmp64-4.asm
│ │ │ │ ├── jmp64-4.hex
│ │ │ │ ├── jmp64-5.asm
│ │ │ │ ├── jmp64-5.hex
│ │ │ │ ├── jmp64-6.asm
│ │ │ │ ├── jmp64-6.hex
│ │ │ │ ├── jmpfar.asm
│ │ │ │ ├── jmpfar.hex
│ │ │ │ ├── larlsl.asm
│ │ │ │ ├── larlsl.hex
│ │ │ │ ├── lds.asm
│ │ │ │ ├── lds.hex
│ │ │ │ ├── lfs64.asm
│ │ │ │ ├── lfs64.hex
│ │ │ │ ├── loopadsz.asm
│ │ │ │ ├── loopadsz.hex
│ │ │ │ ├── lsahf.asm
│ │ │ │ ├── lsahf.hex
│ │ │ │ ├── lzcnt.asm
│ │ │ │ ├── lzcnt.hex
│ │ │ │ ├── Makefile.inc
│ │ │ │ ├── mem64.asm
│ │ │ │ ├── mem64-err.asm
│ │ │ │ ├── mem64-err.errwarn
│ │ │ │ ├── mem64.errwarn
│ │ │ │ ├── mem64.hex
│ │ │ │ ├── mem64hi32.asm
│ │ │ │ ├── mem64hi32.hex
│ │ │ │ ├── mem64rip.asm
│ │ │ │ ├── mem64rip.hex
│ │ │ │ ├── mixcase.asm
│ │ │ │ ├── mixcase.hex
│ │ │ │ ├── movbe.asm
│ │ │ │ ├── movbe.hex
│ │ │ │ ├── movdq32.asm
│ │ │ │ ├── movdq32.hex
│ │ │ │ ├── movdq64.asm
│ │ │ │ ├── movdq64.hex
│ │ │ │ ├── negequ.asm
│ │ │ │ ├── negequ.hex
│ │ │ │ ├── nomem64.asm
│ │ │ │ ├── nomem64-err2.asm
│ │ │ │ ├── nomem64-err2.errwarn
│ │ │ │ ├── nomem64-err.asm
│ │ │ │ ├── nomem64-err.errwarn
│ │ │ │ ├── nomem64.errwarn
│ │ │ │ ├── nomem64.hex
│ │ │ │ ├── o64.asm
│ │ │ │ ├── o64.hex
│ │ │ │ ├── o64loop.asm
│ │ │ │ ├── o64loop.errwarn
│ │ │ │ ├── o64loop.hex
│ │ │ │ ├── opersize.asm
│ │ │ │ ├── opersize.hex
│ │ │ │ ├── opsize-err.asm
│ │ │ │ ├── opsize-err.errwarn
│ │ │ │ ├── overflow.asm
│ │ │ │ ├── overflow.errwarn
│ │ │ │ ├── overflow.hex
│ │ │ │ ├── padlock.asm
│ │ │ │ ├── padlock.hex
│ │ │ │ ├── pinsrb.asm
│ │ │ │ ├── pinsrb.hex
│ │ │ │ ├── pshift.asm
│ │ │ │ ├── pshift.hex
│ │ │ │ ├── push64.asm
│ │ │ │ ├── push64.errwarn
│ │ │ │ ├── push64.hex
│ │ │ │ ├── pushf.asm
│ │ │ │ ├── pushf-err.asm
│ │ │ │ ├── pushf-err.errwarn
│ │ │ │ ├── pushf.hex
│ │ │ │ ├── pushnosize.asm
│ │ │ │ ├── pushnosize.errwarn
│ │ │ │ ├── pushnosize.hex
│ │ │ │ ├── rdrnd.asm
│ │ │ │ ├── rdrnd.hex
│ │ │ │ ├── rep.asm
│ │ │ │ ├── rep.hex
│ │ │ │ ├── ret.asm
│ │ │ │ ├── ret.hex
│ │ │ │ ├── riprel1.asm
│ │ │ │ ├── riprel1.hex
│ │ │ │ ├── riprel2.asm
│ │ │ │ ├── riprel2.errwarn
│ │ │ │ ├── riprel2.hex
│ │ │ │ ├── ripseg.asm
│ │ │ │ ├── ripseg.errwarn
│ │ │ │ ├── ripseg.hex
│ │ │ │ ├── segmov.asm
│ │ │ │ ├── segmov.hex
│ │ │ │ ├── segoff.asm
│ │ │ │ ├── segoff-err.asm
│ │ │ │ ├── segoff-err.errwarn
│ │ │ │ ├── segoff.hex
│ │ │ │ ├── shift64.asm
│ │ │ │ ├── shift64.hex
│ │ │ │ ├── shift.asm
│ │ │ │ ├── shift.hex
│ │ │ │ ├── simd-1.asm
│ │ │ │ ├── simd-1.hex
│ │ │ │ ├── simd-2.asm
│ │ │ │ ├── simd-2.hex
│ │ │ │ ├── simd64-1.asm
│ │ │ │ ├── simd64-1.hex
│ │ │ │ ├── simd64-2.asm
│ │ │ │ ├── simd64-2.hex
│ │ │ │ ├── smx.asm
│ │ │ │ ├── smx.hex
│ │ │ │ ├── sse3.asm
│ │ │ │ ├── sse3.hex
│ │ │ │ ├── sse4.asm
│ │ │ │ ├── sse4-err.asm
│ │ │ │ ├── sse4-err.errwarn
│ │ │ │ ├── sse4.hex
│ │ │ │ ├── sse-prefix.asm
│ │ │ │ ├── sse-prefix.hex
│ │ │ │ ├── ssewidth.asm
│ │ │ │ ├── ssewidth.hex
│ │ │ │ ├── ssse3.asm
│ │ │ │ ├── ssse3.c
│ │ │ │ ├── ssse3.hex
│ │ │ │ ├── stos.asm
│ │ │ │ ├── stos.hex
│ │ │ │ ├── str.asm
│ │ │ │ ├── str.hex
│ │ │ │ ├── strict.asm
│ │ │ │ ├── strict-err.asm
│ │ │ │ ├── strict-err.errwarn
│ │ │ │ ├── strict.errwarn
│ │ │ │ ├── strict.hex
│ │ │ │ ├── stringseg.asm
│ │ │ │ ├── stringseg.errwarn
│ │ │ │ ├── stringseg.hex
│ │ │ │ ├── svm.asm
│ │ │ │ ├── svm.hex
│ │ │ │ ├── twobytemem.asm
│ │ │ │ ├── twobytemem.errwarn
│ │ │ │ ├── twobytemem.hex
│ │ │ │ ├── vmx.asm
│ │ │ │ ├── vmx-err.asm
│ │ │ │ ├── vmx-err.errwarn
│ │ │ │ ├── vmx.hex
│ │ │ │ ├── vsib2-err.asm
│ │ │ │ ├── vsib2-err.errwarn
│ │ │ │ ├── vsib.asm
│ │ │ │ ├── vsib-err.asm
│ │ │ │ ├── vsib-err.errwarn
│ │ │ │ ├── vsib.hex
│ │ │ │ ├── x86label.asm
│ │ │ │ ├── x86label.hex
│ │ │ │ ├── x86_test.sh
│ │ │ │ ├── xchg64.asm
│ │ │ │ ├── xchg64.hex
│ │ │ │ ├── xmm64.asm
│ │ │ │ ├── xmm64.hex
│ │ │ │ ├── xop-all.asm
│ │ │ │ ├── xop-all.hex
│ │ │ │ ├── xop-basic.asm
│ │ │ │ ├── xop-basic.hex
│ │ │ │ ├── xop-cc.asm
│ │ │ │ ├── xop-cc.hex
│ │ │ │ ├── xsave.asm
│ │ │ │ └── xsave.hex
│ │ │ ├── x86arch.c
│ │ │ ├── x86arch.h
│ │ │ ├── x86bc.c
│ │ │ ├── x86cpu.gperf
│ │ │ ├── x86expr.c
│ │ │ ├── x86id.c
│ │ │ └── x86regtmod.gperf
│ │ └── yasm_arch.xml
│ ├── CMakeLists.txt
│ ├── dbgfmts
│ │ ├── CMakeLists.txt
│ │ ├── codeview
│ │ │ ├── CMakeLists.txt
│ │ │ ├── cv8.txt
│ │ │ ├── cv-dbgfmt.c
│ │ │ ├── cv-dbgfmt.h
│ │ │ ├── cv-symline.c
│ │ │ ├── cv-type.c
│ │ │ └── Makefile.inc
│ │ ├── dwarf2
│ │ │ ├── CMakeLists.txt
│ │ │ ├── dwarf2-aranges.c
│ │ │ ├── dwarf2-dbgfmt.c
│ │ │ ├── dwarf2-dbgfmt.h
│ │ │ ├── dwarf2-info.c
│ │ │ ├── dwarf2-line.c
│ │ │ ├── Makefile.inc
│ │ │ └── tests
│ │ │ ├── gen64
│ │ │ │ ├── dwarf2_gen64_test.sh
│ │ │ │ ├── dwarf64_pathname.asm
│ │ │ │ ├── dwarf64_pathname.hex
│ │ │ │ └── Makefile.inc
│ │ │ ├── Makefile.inc
│ │ │ ├── pass32
│ │ │ │ ├── dwarf2_pass32_test.sh
│ │ │ │ ├── dwarf32-err.asm
│ │ │ │ ├── dwarf32-err.errwarn
│ │ │ │ ├── dwarf32_testhd.asm
│ │ │ │ ├── dwarf32_testhd.hex
│ │ │ │ └── Makefile.inc
│ │ │ ├── pass64
│ │ │ │ ├── dwarf2_pass64_test.sh
│ │ │ │ ├── dwarf64_2loc.asm
│ │ │ │ ├── dwarf64_2loc.hex
│ │ │ │ ├── dwarf64_leb128.asm
│ │ │ │ ├── dwarf64_leb128.hex
│ │ │ │ └── Makefile.inc
│ │ │ └── passwin64
│ │ │ ├── dwarf2_passwin64_test.sh
│ │ │ ├── dwarfwin64_testhd.asm
│ │ │ ├── dwarfwin64_testhd.errwarn
│ │ │ ├── dwarfwin64_testhd.hex
│ │ │ └── Makefile.inc
│ │ ├── Makefile.inc
│ │ ├── null
│ │ │ ├── CMakeLists.txt
│ │ │ ├── Makefile.inc
│ │ │ └── null-dbgfmt.c
│ │ ├── stabs
│ │ │ ├── CMakeLists.txt
│ │ │ ├── Makefile.inc
│ │ │ ├── stabs-dbgfmt.c
│ │ │ └── tests
│ │ │ ├── Makefile.inc
│ │ │ ├── stabs-elf.asm
│ │ │ ├── stabs-elf.hex
│ │ │ └── stabs_test.sh
│ │ └── yasm_dbgfmts.xml
│ ├── listfmts
│ │ ├── CMakeLists.txt
│ │ ├── Makefile.inc
│ │ └── nasm
│ │ ├── CMakeLists.txt
│ │ ├── Makefile.inc
│ │ └── nasm-listfmt.c
│ ├── Makefile.inc
│ ├── objfmts
│ │ ├── bin
│ │ │ ├── bin-objfmt.c
│ │ │ ├── CMakeLists.txt
│ │ │ ├── Makefile.inc
│ │ │ └── tests
│ │ │ ├── abs.asm
│ │ │ ├── abs.hex
│ │ │ ├── bigorg.asm
│ │ │ ├── bigorg.errwarn
│ │ │ ├── bigorg.hex
│ │ │ ├── bin-farabs.asm
│ │ │ ├── bin-farabs.hex
│ │ │ ├── bin-rip.asm
│ │ │ ├── bin-rip.hex
│ │ │ ├── bintest.asm
│ │ │ ├── bintest.hex
│ │ │ ├── bin_test.sh
│ │ │ ├── float.asm
│ │ │ ├── float-err.asm
│ │ │ ├── float-err.errwarn
│ │ │ ├── float.hex
│ │ │ ├── integer.asm
│ │ │ ├── integer.hex
│ │ │ ├── integer-warn.asm
│ │ │ ├── integer-warn.errwarn
│ │ │ ├── integer-warn.hex
│ │ │ ├── levelop.asm
│ │ │ ├── levelop.hex
│ │ │ ├── Makefile.inc
│ │ │ ├── multisect
│ │ │ │ ├── bin-align.asm
│ │ │ │ ├── bin-align.errwarn
│ │ │ │ ├── bin-align.hex
│ │ │ │ ├── bin-align.map
│ │ │ │ ├── bin_multi_test.sh
│ │ │ │ ├── bin-ssym.asm
│ │ │ │ ├── bin-ssym.hex
│ │ │ │ ├── bin-ssym.map
│ │ │ │ ├── follows-loop1-err.asm
│ │ │ │ ├── follows-loop1-err.errwarn
│ │ │ │ ├── follows-loop2-err.asm
│ │ │ │ ├── follows-loop2-err.errwarn
│ │ │ │ ├── follows-notfound-err.asm
│ │ │ │ ├── follows-notfound-err.errwarn
│ │ │ │ ├── initbss.asm
│ │ │ │ ├── initbss.errwarn
│ │ │ │ ├── initbss.hex
│ │ │ │ ├── initbss.map
│ │ │ │ ├── ldlinux-sects.asm
│ │ │ │ ├── ldlinux-sects.hex
│ │ │ │ ├── ldlinux-sects.map
│ │ │ │ ├── Makefile.inc
│ │ │ │ ├── multisect1.asm
│ │ │ │ ├── multisect1.hex
│ │ │ │ ├── multisect1.map
│ │ │ │ ├── multisect2.asm
│ │ │ │ ├── multisect2.hex
│ │ │ │ ├── multisect2.map
│ │ │ │ ├── multisect3.asm
│ │ │ │ ├── multisect3.hex
│ │ │ │ ├── multisect3.map
│ │ │ │ ├── multisect4.asm
│ │ │ │ ├── multisect4.hex
│ │ │ │ ├── multisect4.map
│ │ │ │ ├── multisect5.asm
│ │ │ │ ├── multisect5.hex
│ │ │ │ ├── multisect5.map
│ │ │ │ ├── nomultisect1.asm
│ │ │ │ ├── nomultisect1.hex
│ │ │ │ ├── nomultisect1.map
│ │ │ │ ├── nomultisect2.asm
│ │ │ │ ├── nomultisect2.hex
│ │ │ │ ├── nomultisect2.map
│ │ │ │ ├── vfollows-loop1-err.asm
│ │ │ │ ├── vfollows-loop1-err.errwarn
│ │ │ │ ├── vfollows-loop2-err.asm
│ │ │ │ ├── vfollows-loop2-err.errwarn
│ │ │ │ ├── vfollows-notfound-err.asm
│ │ │ │ └── vfollows-notfound-err.errwarn
│ │ │ ├── reserve.asm
│ │ │ ├── reserve.errwarn
│ │ │ ├── reserve.hex
│ │ │ ├── shr.asm
│ │ │ └── shr.hex
│ │ ├── CMakeLists.txt
│ │ ├── coff
│ │ │ ├── CMakeLists.txt
│ │ │ ├── coff-objfmt.c
│ │ │ ├── coff-objfmt.h
│ │ │ ├── Makefile.inc
│ │ │ ├── tests
│ │ │ │ ├── cofftest.asm
│ │ │ │ ├── cofftest.c
│ │ │ │ ├── cofftest.hex
│ │ │ │ ├── coff_test.sh
│ │ │ │ ├── cofftimes.asm
│ │ │ │ ├── cofftimes.hex
│ │ │ │ ├── Makefile.inc
│ │ │ │ ├── x86id.asm
│ │ │ │ ├── x86id.errwarn
│ │ │ │ └── x86id.hex
│ │ │ ├── win64-except.c
│ │ │ ├── win64-gas.mac
│ │ │ └── win64-nasm.mac
│ │ ├── dbg
│ │ │ ├── CMakeLists.txt
│ │ │ ├── dbg-objfmt.c
│ │ │ └── Makefile.inc
│ │ ├── elf
│ │ │ ├── CMakeLists.txt
│ │ │ ├── elf.c
│ │ │ ├── elf.h
│ │ │ ├── elf-machine.h
│ │ │ ├── elf-objfmt.c
│ │ │ ├── elf-x86-amd64.c
│ │ │ ├── elf-x86-x32.c
│ │ │ ├── elf-x86-x86.c
│ │ │ ├── Makefile.inc
│ │ │ └── tests
│ │ │ ├── amd64
│ │ │ │ ├── elf_amd64_test.sh
│ │ │ │ ├── elf-rip.asm
│ │ │ │ ├── elf-rip.hex
│ │ │ │ ├── elfso64.asm
│ │ │ │ ├── elfso64.hex
│ │ │ │ ├── gotpcrel.asm
│ │ │ │ ├── gotpcrel.hex
│ │ │ │ ├── Makefile.inc
│ │ │ │ ├── multiplefixup.asm
│ │ │ │ └── multiplefixup.hex
│ │ │ ├── curpos.asm
│ │ │ ├── curpos-err.asm
│ │ │ ├── curpos-err.errwarn
│ │ │ ├── curpos.hex
│ │ │ ├── elfabssect.asm
│ │ │ ├── elfabssect.hex
│ │ │ ├── elfcond.asm
│ │ │ ├── elfcond.hex
│ │ │ ├── elfequabs.asm
│ │ │ ├── elfequabs.hex
│ │ │ ├── elfglobal.asm
│ │ │ ├── elfglobal.hex
│ │ │ ├── elfglobext2.asm
│ │ │ ├── elfglobext2.hex
│ │ │ ├── elfglobext.asm
│ │ │ ├── elfglobext.hex
│ │ │ ├── elfmanysym.asm
│ │ │ ├── elfmanysym.hex
│ │ │ ├── elf-overdef.asm
│ │ │ ├── elf-overdef.hex
│ │ │ ├── elfreloc.asm
│ │ │ ├── elfreloc-ext.asm
│ │ │ ├── elfreloc-ext.hex
│ │ │ ├── elfreloc.hex
│ │ │ ├── elfsectalign.asm
│ │ │ ├── elfsectalign.hex
│ │ │ ├── elfso.asm
│ │ │ ├── elfso.hex
│ │ │ ├── elftest.asm
│ │ │ ├── elftest.c
│ │ │ ├── elftest.hex
│ │ │ ├── elf_test.sh
│ │ │ ├── elftimes.asm
│ │ │ ├── elftimes.hex
│ │ │ ├── elftypesize.asm
│ │ │ ├── elftypesize.hex
│ │ │ ├── elfvisibility.asm
│ │ │ ├── elfvisibility.errwarn
│ │ │ ├── elfvisibility.hex
│ │ │ ├── elf-x86id.asm
│ │ │ ├── elf-x86id.hex
│ │ │ ├── gas32
│ │ │ │ ├── elf_gas32_got.asm
│ │ │ │ ├── elf_gas32_got.hex
│ │ │ │ ├── elf_gas32_ssym.asm
│ │ │ │ ├── elf_gas32_ssym.hex
│ │ │ │ ├── elf_gas32_test.sh
│ │ │ │ └── Makefile.inc
│ │ │ ├── gas64
│ │ │ │ ├── crosssect.asm
│ │ │ │ ├── crosssect.hex
│ │ │ │ ├── elf_gas64_curpos.asm
│ │ │ │ ├── elf_gas64_curpos.hex
│ │ │ │ ├── elf_gas64_reloc.asm
│ │ │ │ ├── elf_gas64_reloc.hex
│ │ │ │ ├── elf_gas64_ssym.asm
│ │ │ │ ├── elf_gas64_ssym.hex
│ │ │ │ ├── elf_gas64_test.sh
│ │ │ │ └── Makefile.inc
│ │ │ ├── gasx32
│ │ │ │ ├── crosssect.asm
│ │ │ │ ├── crosssect.hex
│ │ │ │ ├── elf_gasx32_curpos.asm
│ │ │ │ ├── elf_gasx32_curpos.hex
│ │ │ │ ├── elf_gasx32_reloc.asm
│ │ │ │ ├── elf_gasx32_reloc.hex
│ │ │ │ ├── elf_gasx32_ssym.asm
│ │ │ │ ├── elf_gasx32_ssym.hex
│ │ │ │ ├── elf_gasx32_test.sh
│ │ │ │ └── Makefile.inc
│ │ │ ├── Makefile.inc
│ │ │ ├── nasm-forceident.asm
│ │ │ ├── nasm-forceident.hex
│ │ │ ├── nasm-sectname.asm
│ │ │ ├── nasm-sectname.hex
│ │ │ └── x32
│ │ │ ├── elf-rip.asm
│ │ │ ├── elf-rip.hex
│ │ │ ├── elfsox32.asm
│ │ │ ├── elfsox32.hex
│ │ │ ├── elf_x32_test.sh
│ │ │ ├── gotpcrel.asm
│ │ │ ├── gotpcrel.hex
│ │ │ ├── Makefile.inc
│ │ │ ├── multiplefixup.asm
│ │ │ └── multiplefixup.hex
│ │ ├── macho
│ │ │ ├── CMakeLists.txt
│ │ │ ├── macho-objfmt.c
│ │ │ ├── Makefile.inc
│ │ │ └── tests
│ │ │ ├── gas32
│ │ │ │ ├── gas-macho32.asm
│ │ │ │ ├── gas-macho32.hex
│ │ │ │ ├── gas_macho32_test.sh
│ │ │ │ └── Makefile.inc
│ │ │ ├── gas64
│ │ │ │ ├── gas-macho64.asm
│ │ │ │ ├── gas-macho64.hex
│ │ │ │ ├── gas-macho64-pic.asm
│ │ │ │ ├── gas-macho64-pic.hex
│ │ │ │ ├── gas_macho64_test.sh
│ │ │ │ └── Makefile.inc
│ │ │ ├── Makefile.inc
│ │ │ ├── nasm32
│ │ │ │ ├── macho32-pext.asm
│ │ │ │ ├── macho32-pext.hex
│ │ │ │ ├── macho32-pic.asm
│ │ │ │ ├── macho32-pic.hex
│ │ │ │ ├── macho32-sect.asm
│ │ │ │ ├── macho32-sect.errwarn
│ │ │ │ ├── macho32-sect.hex
│ │ │ │ ├── macho32-size.asm
│ │ │ │ ├── macho32-size.hex
│ │ │ │ ├── macho32_test.sh
│ │ │ │ ├── macho-reloc.asm
│ │ │ │ ├── macho-reloc.hex
│ │ │ │ ├── machotest.asm
│ │ │ │ ├── machotest.c
│ │ │ │ ├── machotest.hex
│ │ │ │ └── Makefile.inc
│ │ │ └── nasm64
│ │ │ ├── macho64_test.sh
│ │ │ ├── macho-reloc64-err.asm
│ │ │ ├── macho-reloc64-err.errwarn
│ │ │ ├── machotest64.asm
│ │ │ ├── machotest64.c
│ │ │ ├── machotest64.hex
│ │ │ ├── Makefile.inc
│ │ │ ├── nasm-macho64-pic.asm
│ │ │ └── nasm-macho64-pic.hex
│ │ ├── Makefile.inc
│ │ ├── rdf
│ │ │ ├── CMakeLists.txt
│ │ │ ├── Makefile.inc
│ │ │ ├── rdf-objfmt.c
│ │ │ └── tests
│ │ │ ├── Makefile.inc
│ │ │ ├── rdfabs.asm
│ │ │ ├── rdfabs.errwarn
│ │ │ ├── rdfabs.hex
│ │ │ ├── rdfext.asm
│ │ │ ├── rdfext.hex
│ │ │ ├── rdfseg2.asm
│ │ │ ├── rdfseg2.hex
│ │ │ ├── rdfseg.asm
│ │ │ ├── rdfseg.hex
│ │ │ ├── rdftest1.asm
│ │ │ ├── rdftest1.hex
│ │ │ ├── rdftest2.asm
│ │ │ ├── rdftest2.hex
│ │ │ ├── rdf_test.sh
│ │ │ ├── rdtlib.asm
│ │ │ ├── rdtlib.hex
│ │ │ ├── rdtmain.asm
│ │ │ ├── rdtmain.hex
│ │ │ ├── testlib.asm
│ │ │ └── testlib.hex
│ │ ├── win32
│ │ │ ├── Makefile.inc
│ │ │ └── tests
│ │ │ ├── export.asm
│ │ │ ├── export.hex
│ │ │ ├── gas
│ │ │ │ ├── Makefile.inc
│ │ │ │ ├── win32at.asm
│ │ │ │ ├── win32at.hex
│ │ │ │ ├── win32def.asm
│ │ │ │ ├── win32def.hex
│ │ │ │ ├── win32_gas_test.sh
│ │ │ │ ├── win32secrel32.asm
│ │ │ │ └── win32secrel32.hex
│ │ │ ├── Makefile.inc
│ │ │ ├── win32-curpos.asm
│ │ │ ├── win32-curpos.hex
│ │ │ ├── win32-overdef.asm
│ │ │ ├── win32-overdef.hex
│ │ │ ├── win32-safeseh.asm
│ │ │ ├── win32-safeseh.hex
│ │ │ ├── win32-safeseh.masm
│ │ │ ├── win32-segof.asm
│ │ │ ├── win32-segof.hex
│ │ │ ├── win32test.asm
│ │ │ ├── win32test.c
│ │ │ ├── win32test.hex
│ │ │ └── win32_test.sh
│ │ ├── win64
│ │ │ ├── Makefile.inc
│ │ │ └── tests
│ │ │ ├── gas
│ │ │ │ ├── Makefile.inc
│ │ │ │ ├── win64-gas-sce.asm
│ │ │ │ ├── win64-gas-sce.hex
│ │ │ │ └── win64_gas_test.sh
│ │ │ ├── Makefile.inc
│ │ │ ├── sce1.asm
│ │ │ ├── sce1-err.asm
│ │ │ ├── sce1-err.errwarn
│ │ │ ├── sce1.hex
│ │ │ ├── sce2.asm
│ │ │ ├── sce2-err.asm
│ │ │ ├── sce2-err.errwarn
│ │ │ ├── sce2.hex
│ │ │ ├── sce3.asm
│ │ │ ├── sce3.hex
│ │ │ ├── sce3.masm
│ │ │ ├── sce4.asm
│ │ │ ├── sce4-err.asm
│ │ │ ├── sce4-err.errwarn
│ │ │ ├── sce4.hex
│ │ │ ├── sce4.masm
│ │ │ ├── win64-abs.asm
│ │ │ ├── win64-abs.hex
│ │ │ ├── win64-curpos.asm
│ │ │ ├── win64-curpos.hex
│ │ │ ├── win64-dataref2.asm
│ │ │ ├── win64-dataref2.hex
│ │ │ ├── win64-dataref2.masm
│ │ │ ├── win64-dataref.asm
│ │ │ ├── win64-dataref.hex
│ │ │ ├── win64-dataref.masm
│ │ │ ├── win64-function.asm
│ │ │ ├── win64-function.hex
│ │ │ ├── win64-imagebase.asm
│ │ │ ├── win64-imagebase.hex
│ │ │ └── win64_test.sh
│ │ ├── xdf
│ │ │ ├── CMakeLists.txt
│ │ │ ├── Makefile.inc
│ │ │ ├── tests
│ │ │ │ ├── Makefile.inc
│ │ │ │ ├── xdflong.asm
│ │ │ │ ├── xdflong.errwarn
│ │ │ │ ├── xdflong.hex
│ │ │ │ ├── xdfother.asm
│ │ │ │ ├── xdfother.hex
│ │ │ │ ├── xdf-overdef.asm
│ │ │ │ ├── xdf-overdef.hex
│ │ │ │ ├── xdfprotect.asm
│ │ │ │ ├── xdfprotect.hex
│ │ │ │ ├── xdfsect.asm
│ │ │ │ ├── xdfsect-err.asm
│ │ │ │ ├── xdfsect-err.errwarn
│ │ │ │ ├── xdfsect.hex
│ │ │ │ ├── xdf_test.sh
│ │ │ │ ├── xdfvirtual.asm
│ │ │ │ └── xdfvirtual.hex
│ │ │ └── xdf-objfmt.c
│ │ └── yasm_objfmts.xml
│ ├── parsers
│ │ ├── CMakeLists.txt
│ │ ├── gas
│ │ │ ├── CMakeLists.txt
│ │ │ ├── gas-parse.c
│ │ │ ├── gas-parse-intel.c
│ │ │ ├── gas-parser.c
│ │ │ ├── gas-parser.h
│ │ │ ├── gas-token.re
│ │ │ ├── Makefile.inc
│ │ │ └── tests
│ │ │ ├── bin
│ │ │ │ ├── gas_bin_test.sh
│ │ │ │ ├── gas-comment.asm
│ │ │ │ ├── gas-comment.errwarn
│ │ │ │ ├── gas-comment.hex
│ │ │ │ ├── gas-intel_syntax-noprefix.asm
│ │ │ │ ├── gas-intel_syntax-noprefix.hex
│ │ │ │ ├── gas-llabel.asm
│ │ │ │ ├── gas-llabel.hex
│ │ │ │ ├── gas-macro.asm
│ │ │ │ ├── gas-macro.hex
│ │ │ │ ├── gas-set.asm
│ │ │ │ ├── gas-set.hex
│ │ │ │ ├── gas-str.asm
│ │ │ │ ├── gas-str.hex
│ │ │ │ ├── Makefile.inc
│ │ │ │ ├── reptempty.asm
│ │ │ │ ├── reptempty.hex
│ │ │ │ ├── rept-err.asm
│ │ │ │ ├── rept-err.errwarn
│ │ │ │ ├── reptlong.asm
│ │ │ │ ├── reptlong.hex
│ │ │ │ ├── reptnested.asm
│ │ │ │ ├── reptnested.hex
│ │ │ │ ├── reptsimple.asm
│ │ │ │ ├── reptsimple.hex
│ │ │ │ ├── reptwarn.asm
│ │ │ │ ├── reptwarn.errwarn
│ │ │ │ ├── reptwarn.hex
│ │ │ │ ├── reptzero.asm
│ │ │ │ └── reptzero.hex
│ │ │ ├── dataref-imm.asm
│ │ │ ├── dataref-imm.hex
│ │ │ ├── datavis2.asm
│ │ │ ├── datavis2.hex
│ │ │ ├── datavis.asm
│ │ │ ├── datavis.errwarn
│ │ │ ├── datavis.hex
│ │ │ ├── execsect.asm
│ │ │ ├── execsect.hex
│ │ │ ├── gas-fill.asm
│ │ │ ├── gas-fill.hex
│ │ │ ├── gas-float.asm
│ │ │ ├── gas-float.hex
│ │ │ ├── gas-instlabel.asm
│ │ │ ├── gas-instlabel.hex
│ │ │ ├── gas-line2-err.asm
│ │ │ ├── gas-line2-err.errwarn
│ │ │ ├── gas-line-err.asm
│ │ │ ├── gas-line-err.errwarn
│ │ │ ├── gas-push.asm
│ │ │ ├── gas-push.hex
│ │ │ ├── gassectalign.asm
│ │ │ ├── gassectalign.hex
│ │ │ ├── gas-segprefix.asm
│ │ │ ├── gas-segprefix.hex
│ │ │ ├── gas-semi.asm
│ │ │ ├── gas-semi.hex
│ │ │ ├── gas_test.sh
│ │ │ ├── jmpcall.asm
│ │ │ ├── jmpcall.errwarn
│ │ │ ├── jmpcall.hex
│ │ │ ├── leb128.asm
│ │ │ ├── leb128.hex
│ │ │ ├── localcomm.asm
│ │ │ ├── localcomm.hex
│ │ │ ├── Makefile.inc
│ │ │ ├── reggroup.asm
│ │ │ ├── reggroup-err.asm
│ │ │ ├── reggroup-err.errwarn
│ │ │ ├── reggroup.hex
│ │ │ ├── strzero.asm
│ │ │ ├── strzero.hex
│ │ │ ├── varinsn.asm
│ │ │ └── varinsn.hex
│ │ ├── Makefile.inc
│ │ ├── nasm
│ │ │ ├── CMakeLists.txt
│ │ │ ├── Makefile.inc
│ │ │ ├── nasm-parse.c
│ │ │ ├── nasm-parser.c
│ │ │ ├── nasm-parser.h
│ │ │ ├── nasm-parser-struct.h
│ │ │ ├── nasm-std.mac
│ │ │ ├── nasm-token.re
│ │ │ └── tests
│ │ │ ├── alignnop16.asm
│ │ │ ├── alignnop16.hex
│ │ │ ├── alignnop32.asm
│ │ │ ├── alignnop32.hex
│ │ │ ├── charconstmath.asm
│ │ │ ├── charconstmath.hex
│ │ │ ├── dirwarning.asm
│ │ │ ├── dirwarning.errwarn
│ │ │ ├── dirwarning.hex
│ │ │ ├── dy.asm
│ │ │ ├── dy.hex
│ │ │ ├── endcomma.asm
│ │ │ ├── endcomma.hex
│ │ │ ├── equcolon.asm
│ │ │ ├── equcolon.hex
│ │ │ ├── equlocal.asm
│ │ │ ├── equlocal.hex
│ │ │ ├── hexconst.asm
│ │ │ ├── hexconst.hex
│ │ │ ├── locallabel2.asm
│ │ │ ├── locallabel2.hex
│ │ │ ├── locallabel.asm
│ │ │ ├── locallabel.hex
│ │ │ ├── long.asm
│ │ │ ├── long.hex
│ │ │ ├── Makefile.inc
│ │ │ ├── nasm-prefix.asm
│ │ │ ├── nasm-prefix.hex
│ │ │ ├── nasm_test.sh
│ │ │ ├── newsect.asm
│ │ │ ├── newsect.hex
│ │ │ ├── orphannowarn.asm
│ │ │ ├── orphannowarn.hex
│ │ │ ├── prevlocalwarn.asm
│ │ │ ├── prevlocalwarn.errwarn
│ │ │ ├── prevlocalwarn.hex
│ │ │ ├── strucalign.asm
│ │ │ ├── strucalign.hex
│ │ │ ├── strucbase.asm
│ │ │ ├── strucbase.hex
│ │ │ ├── struczero.asm
│ │ │ ├── struczero.hex
│ │ │ ├── syntax-err.asm
│ │ │ ├── syntax-err.errwarn
│ │ │ ├── uscore.asm
│ │ │ ├── uscore.hex
│ │ │ └── worphan
│ │ │ ├── Makefile.inc
│ │ │ ├── nasm_worphan_test.sh
│ │ │ ├── orphanwarn.asm
│ │ │ ├── orphanwarn.errwarn
│ │ │ └── orphanwarn.hex
│ │ ├── tasm
│ │ │ ├── Makefile.inc
│ │ │ └── tests
│ │ │ ├── array.asm
│ │ │ ├── array.hex
│ │ │ ├── case.asm
│ │ │ ├── case.hex
│ │ │ ├── charstr.asm
│ │ │ ├── charstr.hex
│ │ │ ├── dup.asm
│ │ │ ├── dup.hex
│ │ │ ├── equal.asm
│ │ │ ├── equal.hex
│ │ │ ├── exe
│ │ │ │ ├── exe.asm
│ │ │ │ ├── exe.hex
│ │ │ │ ├── Makefile.inc
│ │ │ │ └── tasm_exe_test.sh
│ │ │ ├── expr.asm
│ │ │ ├── expr.hex
│ │ │ ├── irp.asm
│ │ │ ├── irp.hex
│ │ │ ├── label.asm
│ │ │ ├── label.hex
│ │ │ ├── les.asm
│ │ │ ├── les.hex
│ │ │ ├── lidt.asm
│ │ │ ├── lidt.hex
│ │ │ ├── macro.asm
│ │ │ ├── macro.hex
│ │ │ ├── Makefile.inc
│ │ │ ├── offset.asm
│ │ │ ├── offset.hex
│ │ │ ├── quote.asm
│ │ │ ├── quote.hex
│ │ │ ├── res.asm
│ │ │ ├── res.errwarn
│ │ │ ├── res.hex
│ │ │ ├── segment.asm
│ │ │ ├── segment.hex
│ │ │ ├── size.asm
│ │ │ ├── size.hex
│ │ │ ├── struc.asm
│ │ │ ├── struc.errwarn
│ │ │ ├── struc.hex
│ │ │ └── tasm_test.sh
│ │ └── yasm_parsers.xml
│ └── preprocs
│ ├── CMakeLists.txt
│ ├── cpp
│ │ ├── CMakeLists.txt
│ │ ├── cpp-preproc.c
│ │ └── Makefile.inc
│ ├── gas
│ │ ├── CMakeLists.txt
│ │ ├── gas-eval.c
│ │ ├── gas-eval.h
│ │ ├── gas-preproc.c
│ │ ├── Makefile.inc
│ │ └── tests
│ │ └── Makefile.inc
│ ├── Makefile.inc
│ ├── nasm
│ │ ├── CMakeLists.txt
│ │ ├── genversion.c
│ │ ├── Makefile.inc
│ │ ├── nasm-eval.c
│ │ ├── nasm-eval.h
│ │ ├── nasm.h
│ │ ├── nasmlib.c
│ │ ├── nasmlib.h
│ │ ├── nasm-pp.c
│ │ ├── nasm-pp.h
│ │ ├── nasm-preproc.c
│ │ └── tests
│ │ ├── 16args.asm
│ │ ├── 16args.hex
│ │ ├── ifcritical-err.asm
│ │ ├── ifcritical-err.errwarn
│ │ ├── longline.asm
│ │ ├── longline.hex
│ │ ├── macroeof-err.asm
│ │ ├── macroeof-err.errwarn
│ │ ├── Makefile.inc
│ │ ├── nasmpp-bigint.asm
│ │ ├── nasmpp-bigint.hex
│ │ ├── nasmpp-decimal.asm
│ │ ├── nasmpp-decimal.hex
│ │ ├── nasmpp-nested.asm
│ │ ├── nasmpp-nested.errwarn
│ │ ├── nasmpp-nested.hex
│ │ ├── nasmpp_test.sh
│ │ ├── noinclude-err.asm
│ │ ├── noinclude-err.errwarn
│ │ ├── orgsect.asm
│ │ ├── orgsect.hex
│ │ ├── scope-err.asm
│ │ └── scope-err.errwarn
│ ├── raw
│ │ ├── CMakeLists.txt
│ │ ├── Makefile.inc
│ │ ├── raw-preproc.c
│ │ └── tests
│ │ ├── longline.asm
│ │ ├── longline.hex
│ │ ├── Makefile.inc
│ │ └── rawpp_test.sh
│ └── tasm
│ ├── Makefile.inc
│ └── tests
│ ├── Makefile.inc
│ ├── tasm-assume-comment.asm
│ ├── tasm-assume-comment.hex
│ ├── tasm-comment-instr.asm
│ ├── tasm-comment-instr.hex
│ └── tasmpp_test.sh
├── NEWS
├── out_test.sh
├── plugins
│ ├── dbg
│ │ ├── CMakeLists.txt
│ │ ├── dbg-objfmt.c
│ │ ├── init_plugin.c
│ │ └── README
│ ├── README
│ └── x86
│ ├── CMakeLists.txt
│ ├── init_plugin.c
│ └── README
├── po
│ ├── boldquot.sed
│ ├── ChangeLog
│ ├── en@boldquot.header
│ ├── en@quot.header
│ ├── insert-header.sin
│ ├── Makefile.in.in
│ ├── Makevars
│ ├── POTFILES.in
│ ├── quot.sed
│ ├── remove-potcdate.sin
│ ├── Rules-quot
│ ├── stamp-po
│ └── yasm.pot
├── README
├── splint.sh
├── test_hd.c
├── tools
│ ├── CMakeLists.txt
│ ├── genmacro
│ │ ├── CMakeLists.txt
│ │ ├── genmacro.c
│ │ └── Makefile.inc
│ ├── genperf
│ │ ├── CMakeLists.txt
│ │ ├── genperf.c
│ │ ├── Makefile.inc
│ │ ├── perfect.c
│ │ ├── perfect.h
│ │ └── standard.h
│ ├── Makefile.inc
│ ├── python-yasm
│ │ ├── bytecode.pxi
│ │ ├── errwarn.pxi
│ │ ├── expr.pxi
│ │ ├── floatnum.pxi
│ │ ├── intnum.pxi
│ │ ├── Makefile.inc
│ │ ├── pyxelator
│ │ │ ├── cparse.py
│ │ │ ├── genpyx.py
│ │ │ ├── ir.py
│ │ │ ├── lexer.py
│ │ │ ├── node.py
│ │ │ ├── parse_core.py
│ │ │ ├── work_unit.py
│ │ │ └── wrap_yasm.py
│ │ ├── setup.py
│ │ ├── symrec.pxi
│ │ ├── tests
│ │ │ ├── __init__.py
│ │ │ ├── Makefile.inc
│ │ │ ├── python_test.sh
│ │ │ ├── test_bytecode.py
│ │ │ ├── test_expr.py
│ │ │ ├── test_intnum.py
│ │ │ └── test_symrec.py
│ │ ├── value.pxi
│ │ └── yasm.pyx
│ └── re2c
│ ├── actions.c
│ ├── basics.h
│ ├── bootstrap
│ │ └── scanner.c
│ ├── CHANGELOG
│ ├── CMakeLists.txt
│ ├── code.c
│ ├── dfa.c
│ ├── dfa.h
│ ├── doc
│ │ ├── loplas.ps.gz
│ │ └── sample.bib
│ ├── examples
│ │ ├── basemmap.c
│ │ ├── cmmap.re
│ │ ├── cnokw.re
│ │ ├── c.re
│ │ ├── cunroll.re
│ │ ├── modula.re
│ │ ├── repeater.re
│ │ ├── rexx
│ │ │ ├── README
│ │ │ ├── rexx.l
│ │ │ └── scanio.c
│ │ ├── sample.re
│ │ └── simple.re
│ ├── globals.h
│ ├── ins.h
│ ├── main.c
│ ├── Makefile.inc
│ ├── mbo_getopt.c
│ ├── mbo_getopt.h
│ ├── NO_WARRANTY
│ ├── parse.h
│ ├── parser.c
│ ├── parser.h
│ ├── re2c.1
│ ├── README
│ ├── re.h
│ ├── scanner.c
│ ├── scanner.h
│ ├── scanner.re
│ ├── substr.c
│ ├── substr.h
│ ├── token.h
│ └── translate.c
├── util.h
├── version
├── x86insn_gas.gperf
├── x86insn_nasm.gperf
├── x86insns.c
├── yasm.1
├── yasm_arch.7
├── yasm_dbgfmts.7
├── yasm_objfmts.7
├── yasm_parsers.7
└── YASM-VERSION-GEN.sh
120 directories, 1426 files
标签:
小贴士
感谢您为本站写下的评论,您的评论对其它用户来说具有重要的参考价值,所以请认真填写。
- 类似“顶”、“沙发”之类没有营养的文字,对勤劳贡献的楼主来说是令人沮丧的反馈信息。
- 相信您也不想看到一排文字/表情墙,所以请不要反馈意义不大的重复字符,也请尽量不要纯表情的回复。
- 提问之前请再仔细看一遍楼主的说明,或许是您遗漏了。
- 请勿到处挖坑绊人、招贴广告。既占空间让人厌烦,又没人会搭理,于人于己都无利。
关于好例子网
本站旨在为广大IT学习爱好者提供一个非营利性互相学习交流分享平台。本站所有资源都可以被免费获取学习研究。本站资源来自网友分享,对搜索内容的合法性不具有预见性、识别性、控制性,仅供学习研究,请务必在下载后24小时内给予删除,不得用于其他任何用途,否则后果自负。基于互联网的特殊性,平台无法对用户传输的作品、信息、内容的权属或合法性、安全性、合规性、真实性、科学性、完整权、有效性等进行实质审查;无论平台是否已进行审查,用户均应自行承担因其传输的作品、信息、内容而可能或已经产生的侵权或权属纠纷等法律责任。本站所有资源不代表本站的观点或立场,基于网友分享,根据中国法律《信息网络传播权保护条例》第二十二与二十三条之规定,若资源存在侵权或相关问题请联系本站客服人员,点此联系我们。关于更多版权及免责申明参见 版权及免责申明
网友评论
我要评论