2025-12-04 18:33:25 -08:00

19 lines
308 B
Fortran

module Svc {
port Ping(key: U32)
}
module Svc {
passive component Health {
sync input port pingIn: [2] Svc.Ping
output port pingOut: [2] Svc.Ping
match pingOut with pingIn
}
}
module M {
passive component C {
sync input port pingIn: Svc.Ping
output port pingOut: Svc.Ping
}
}