コード例 #1
0
ファイル: Instructions.cs プロジェクト: sayaPintar/PurpleMoon
 public static bool F_RET()
 {
     CPU.MoveProgramCounter(CPU.PopStack());
     // skips the call fuction it goes back to
     CPU.StepProgramCounter(I_CALL.Arguments);
     return(true);
 }