Exemplo n.º 1
0
 public override CallingConvention GetCallingConvention(string?ccName)
 {
     if (this.cc == null)
     {
         this.cc = new AlphaCallingConvention(this.Architecture);
     }
     return(cc);
 }
Exemplo n.º 2
0
 public WinAlphaPlatform(IServiceProvider services, IProcessorArchitecture arch)
     : base(services, arch, "winAlpha")
 {
     arch.StackRegister = arch.GetRegister("r30") !;
     cc = null !;
 }