===========================================================================
| 7975 | |
| 7976 | //=========================================================================== |
| 7977 | Update_t CmdZeroPageDisable (int nArgs) |
| 7978 | { |
| 7979 | if (!nArgs) |
| 7980 | return Help_Arg_1( CMD_ZEROPAGE_POINTER_DISABLE ); |
| 7981 | if (! g_nZeroPagePointers) |
| 7982 | return _ZeroPage_Error(); |
| 7983 | |
| 7984 | _BWZ_EnableDisableViaArgs( nArgs, g_aZeroPagePointers, MAX_ZEROPAGE_POINTERS, false ); |
| 7985 | |
| 7986 | return UPDATE_ZERO_PAGE; |
| 7987 | } |
| 7988 | |
| 7989 | //=========================================================================== |
| 7990 | Update_t CmdZeroPageEnable (int nArgs) |
nothing calls this directly
no test coverage detected