blob: 68c7387f4afb5f6bbb423308b1f334922014dd71 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
|
/*
** Demonstrate TRAPFLAG.ASM
**
** public domain by Bob Stout
*/
#include <stdio.h>
#include <dos.h>
#include <int.h>
extern void ins09(void);
extern void undo09(void);
extern volatile int far ccrcvd;
static void biosprt(char *p)
{
union REGS regs;
while (*p)
{
regs.h.ah = 0x0e; /* Low-level services only! */
regs.h.al = *p++;
regs.x.bx = 0;
int86(0x10, ®s, ®s);
}
}
static void far my_cc(void)
{
char *p1 = "Ctrl-";
char *p2 = "C";
char *p3 = "Break";
char *p4 = " received\r\n";
biosprt(p1);
if (1 == ccrcvd)
biosprt(p2);
else biosprt(p3);
biosprt(p4);
}
main()
{
unsigned seg, ofs;
int ch = 0;
setbuf(stdout, NULL);
my_cc();
ins09();
atexit(undo09);
puts("New Ints 09h & 1Bh installed...");
puts("Hit Esc to quit...");
do
{
if (kbhit())
{
if (0x1b != (ch = getch()))
{
if (0x20 > ch)
{
fputc('^', stdout);
ch += '@';
}
fputc(ch, stdout);
}
}
if (ccrcvd)
{
my_cc();
ccrcvd = 0;
}
} while (0x1b != ch);
}
|