diff options
| author | 2024-04-25 21:24:10 +0100 | |
|---|---|---|
| committer | 2024-04-25 22:32:27 +0000 | |
| commit | 2d04cacc5322951f187bb17e017c12920ac8ebe2 (patch) | |
| tree | 80ee017efa878dfd5344b44249e6a241f2a7f6e2 /v4.0/src/DEV/DISPLAY/DISPMES.ASM | |
| parent | Merge pull request #430 from jpbaltazar/typoptbr (diff) | |
| download | ms-dos-main.tar.gz ms-dos-main.tar.xz ms-dos-main.zip | |
Diffstat (limited to 'v4.0/src/DEV/DISPLAY/DISPMES.ASM')
| -rw-r--r-- | v4.0/src/DEV/DISPLAY/DISPMES.ASM | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/v4.0/src/DEV/DISPLAY/DISPMES.ASM b/v4.0/src/DEV/DISPLAY/DISPMES.ASM new file mode 100644 index 0000000..3f7c551 --- /dev/null +++ b/v4.0/src/DEV/DISPLAY/DISPMES.ASM | |||
| @@ -0,0 +1,17 @@ | |||
| 1 | CODE SEGMENT BYTE PUBLIC 'CODE' ; | ||
| 2 | ASSUME CS:CODE,DS:CODE ; | ||
| 3 | ; | ||
| 4 | CR EQU 13 ; | ||
| 5 | LF EQU 10 ; | ||
| 6 | ; | ||
| 7 | PUBLIC ERROR_1B ; | ||
| 8 | PUBLIC ERROR_1A ; | ||
| 9 | PUBLIC ERROR_2 ; | ||
| 10 | PUBLIC ERROR_3 ; | ||
| 11 | ;; PUBLIC MSG_4 ; | ||
| 12 | ; | ||
| 13 | INCLUDE DISPMES.INC | ||
| 14 | ; | ||
| 15 | CODE ENDS ; | ||
| 16 | END ; | ||
| 17 | \ No newline at end of file | ||