Simulation Core
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 

22 lines
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