| 243 | /* --------------------- subroutines --------------------- */ |
| 244 | |
| 245 | INLINE int Limit( int val, int max, int min ) { |
| 246 | if ( val > max ) |
| 247 | val = max; |
| 248 | else if ( val < min ) |
| 249 | val = min; |
| 250 | |
| 251 | return val; |
| 252 | } |
| 253 | |
| 254 | /* status set and IRQ handling */ |
| 255 | INLINE void OPL_STATUS_SET(FM_OPL *OPL,int flag) |
no outgoing calls
no test coverage detected