CALL MUTE
This instruction is available in Hitachi Basic, P-BASIC and RMSX Basic.
Contents |
CALL MUTE in Hitachi BASIC
Effect
Puts the built-in data reader of the Hitachi MB-H2 computer after 4 seconds in pause mode before recording if it is currently in record mode.
Syntax
CALL MUTE
Related to
Compatibility
Hitachi BASIC version 1
CALL MUTE in P-BASIC
...
CALL MUTE in RMSX Basic
Effect
Disables or enables all sounds.
Syntax
CALL MUTE [ON]|[OFF]
Parameters
Without any parameter, CALL MUTE works as a toggle between both options (sounds disabled or enabled).
With ON, you disable all sounds.
With OFF, you enable all sounds.
Example
10 CLS:BEEP 20 A$=INPUT$(1) 30 _MUTE:BEEP 40 A$=INPUT$(1) 50 _MUTE OFF:BEEP 60 A$=INPUT$(1) 70 _MUTE ON:BEEP 80 A$=INPUT$(1) 90 _MUTE:BEEP