コード例 #1
0
 Win64ObjectFile IAssembler <YASM, Win64ObjectFile> .Assemble(AssemblySourceFile <YASM> assemblySourceFile)
 {
     return(Assmeble <Win64ObjectFile>(new AssemblySource <YASM>(assemblySourceFile), Format.win64, x => new Win64ObjectFile(x)).First());
 }
コード例 #2
0
 public AssemblySource(AssemblySourceFile <T> assemblySourceFile) : this(new List <AssemblySourceFile <T> >() { assemblySourceFile })
 {
 }
コード例 #3
0
 Win64ObjectFile IAssembler <MASM, Win64ObjectFile> .Assemble(AssemblySourceFile <MASM> assemblySourceFile)
 {
     return(Assmeble <Win64ObjectFile>(new AssemblySource <MASM>(assemblySourceFile), TargetArch.x64, x => new Win64ObjectFile(x)).First());
 }