Simulation Core
您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符
 
 
 
 
 
 

22 行
519 B

  1. # 1 "/mnt/c/Projects/VSIM/SimulationCore2/CSharp/Common/CCommon.f90"
  2. module CCommon
  3. use CCommonVariables
  4. implicit none
  5. public
  6. contains
  7. ! Input routines
  8. subroutine SetStandRack(v)
  9. implicit none
  10. integer, intent(in) :: v
  11. if(Common%StandRack == v) return
  12. Common%StandRack = v
  13. ! call Common%OnStandRackChange%Run(v)
  14. end subroutine
  15. integer function GetStandRack()
  16. implicit none
  17. GetStandRack = Common%StandRack
  18. end function
  19. end module CCommon