summaryrefslogtreecommitdiff
path: root/v4.0/src/CMD/PRINT/PRINT_RM.ASM
diff options
context:
space:
mode:
Diffstat (limited to 'v4.0/src/CMD/PRINT/PRINT_RM.ASM')
-rw-r--r--v4.0/src/CMD/PRINT/PRINT_RM.ASM49
1 files changed, 49 insertions, 0 deletions
diff --git a/v4.0/src/CMD/PRINT/PRINT_RM.ASM b/v4.0/src/CMD/PRINT/PRINT_RM.ASM
new file mode 100644
index 0000000..a330c4c
--- /dev/null
+++ b/v4.0/src/CMD/PRINT/PRINT_RM.ASM
@@ -0,0 +1,49 @@
1 page 60,132
2; $SALUT (4,25,30,41)
3 INCLUDE pridefs.INC
4
5BREAK <Resident Portion Messages>
6
7;
8; DOS PRINT
9;
10; Resident Portion Messages
11;
12; 02/15/84 MAU Created as a separate link module
13; from the include file. should
14; always be linked first!!
15;
16; 05/20/87 FJG Change format to new Message Service
17; Routines
18;
19
20CodeR Segment public para
21
22 ASSUME CS:CodeR,DS:nothing,ES:nothing,SS:nothing
23
24 public R_MES_BUFF
25 ;--------------------------------------
26 ;INT 24 messages A La COMMAND
27 ;--------------------------------------
28
29R_MES_BUFF LABEL WORD ; Room is generated for:
30
31 db 512 dup(?) ; ERR0
32 ; ERR1
33 ; ERR2
34 ; ERR3
35 ; ERR4
36 ; ERR5
37 ; ERR6
38 ; ERR7
39 ; ERR8
40 ; ERR9
41 ; ERR10
42 ; ERR11
43 ; ERR12
44 ;
45
46CodeR EndS
47
48 End
49 \ No newline at end of file