diff options
Diffstat (limited to 'v2.0/source/MOREMES.ASM')
| -rw-r--r-- | v2.0/source/MOREMES.ASM | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/v2.0/source/MOREMES.ASM b/v2.0/source/MOREMES.ASM new file mode 100644 index 0000000..57c28d1 --- /dev/null +++ b/v2.0/source/MOREMES.ASM | |||
| @@ -0,0 +1,17 @@ | |||
| 1 | TITLE MORE Messages | ||
| 2 | |||
| 3 | CODE SEGMENT PUBLIC | ||
| 4 | PUBLIC MORETXT,BADVER,CRLFTXT,BUFFER | ||
| 5 | |||
| 6 | MORETXT DB 13,"-- More --$" | ||
| 7 | BADVER DB "MORE: Incorrect DOS version" | ||
| 8 | CRLFTXT DB 13,10,"$" | ||
| 9 | ; | ||
| 10 | ; THIS VARIABLE MUST BE DEFINED LAST! | ||
| 11 | ; | ||
| 12 | BUFFER DB 4098 DUP (?) | ||
| 13 | |||
| 14 | CODE ENDS | ||
| 15 | END | ||
| 16 | |||
| 17 | \ No newline at end of file | ||