Subversion Repositories SvarDOS

Rev

Rev 408 | Rev 533 | Go to most recent revision | Only display areas with differences | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 408 Rev 421
-
 
1
/* This file is part of the SvarCOM project and is published under the terms
-
 
2
 * of the MIT license.
-
 
3
 *
-
 
4
 * Copyright (C) 2021 Mateusz Viste
-
 
5
 *
-
 
6
 * Permission is hereby granted, free of charge, to any person obtaining a
-
 
7
 * copy of this software and associated documentation files (the "Software"),
-
 
8
 * to deal in the Software without restriction, including without limitation
-
 
9
 * the rights to use, copy, modify, merge, publish, distribute, sublicense,
-
 
10
 * and/or sell copies of the Software, and to permit persons to whom the
-
 
11
 * Software is furnished to do so, subject to the following conditions:
-
 
12
 *
-
 
13
 * The above copyright notice and this permission notice shall be included in
-
 
14
 * all copies or substantial portions of the Software.
-
 
15
 *
-
 
16
 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
-
 
17
 * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
-
 
18
 * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
-
 
19
 * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
-
 
20
 * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
-
 
21
 * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
-
 
22
 * DEALINGS IN THE SOFTWARE.
-
 
23
 */
-
 
24
 
1
/*
25
/*
2
 * break
26
 * break
3
 */
27
 */
4
 
28
 
5
static int cmd_break(struct cmd_funcparam *p) {
29
static int cmd_break(struct cmd_funcparam *p) {
6
  unsigned char brkflag = 0;
30
  unsigned char brkflag = 0;
7
 
31
 
8
  if (cmd_ishlp(p)) {
32
  if (cmd_ishlp(p)) {
9
    outputnl("Sets or clears extended CTRL+C checking");
33
    outputnl("Sets or clears extended CTRL+C checking");
10
    outputnl("");
34
    outputnl("");
11
    outputnl("BREAK [ON | OFF]");
35
    outputnl("BREAK [ON | OFF]");
12
    outputnl("");
36
    outputnl("");
13
    outputnl("Type BREAK without a parameter to display the current BREAK setting.");
37
    outputnl("Type BREAK without a parameter to display the current BREAK setting.");
14
    return(-1);
38
    return(-1);
15
  }
39
  }
16
 
40
 
17
  /* no params: display current break state */
41
  /* no params: display current break state */
18
  if (p->argc == 0) {
42
  if (p->argc == 0) {
19
    _asm {
43
    _asm {
20
      push ax
44
      push ax
21
      push dx
45
      push dx
22
 
46
 
23
      mov ax, 0x3300   /* query break-check flag */
47
      mov ax, 0x3300   /* query break-check flag */
24
      int 0x21         /* status (0=OFF, 1=ON) in DL */
48
      int 0x21         /* status (0=OFF, 1=ON) in DL */
25
      mov [brkflag], dl
49
      mov [brkflag], dl
26
 
50
 
27
      pop dx
51
      pop dx
28
      pop ax
52
      pop ax
29
    }
53
    }
30
    if (brkflag == 0) {
54
    if (brkflag == 0) {
31
      outputnl("BREAK is off");
55
      outputnl("BREAK is off");
32
    } else {
56
    } else {
33
      outputnl("BREAK is on");
57
      outputnl("BREAK is on");
34
    }
58
    }
35
    return(-1);
59
    return(-1);
36
  }
60
  }
37
 
61
 
38
  /* too many params? */
62
  /* too many params? */
39
  if (p->argc > 1) {
63
  if (p->argc > 1) {
40
    outputnl("Too many parameters");
64
    outputnl("Too many parameters");
41
    return(-1);
65
    return(-1);
42
  }
66
  }
43
 
67
 
44
  /* exactly 1 parameter - "on" or "off" */
68
  /* exactly 1 parameter - "on" or "off" */
45
  if (imatch(p->argv[0], "on")) {
69
  if (imatch(p->argv[0], "on")) {
46
    brkflag = 1;
70
    brkflag = 1;
47
  } else if (!imatch(p->argv[0], "off")) {
71
  } else if (!imatch(p->argv[0], "off")) {
48
    outputnl("Invalid parameter");
72
    outputnl("Invalid parameter");
49
    return(-1);
73
    return(-1);
50
  }
74
  }
51
 
75
 
52
  /* set break accordingly to brkflag */
76
  /* set break accordingly to brkflag */
53
  _asm {
77
  _asm {
54
    push ax
78
    push ax
55
    push dx
79
    push dx
56
 
80
 
57
    mov ax, 0x3301     /* set break-check level */
81
    mov ax, 0x3301     /* set break-check level */
58
    mov dl, [brkflag]  /* 0=OFF 1=ON */
82
    mov dl, [brkflag]  /* 0=OFF 1=ON */
59
    int 0x21
83
    int 0x21
60
 
84
 
61
    pop dx
85
    pop dx
62
    pop ax
86
    pop ax
63
  }
87
  }
64
 
88
 
65
  return(-1);
89
  return(-1);
66
}
90
}
67
 
91