summaryrefslogtreecommitdiff
path: root/v4.0/src/INC/MACRO.DEF
diff options
context:
space:
mode:
Diffstat (limited to 'v4.0/src/INC/MACRO.DEF')
-rw-r--r--v4.0/src/INC/MACRO.DEF19
1 files changed, 19 insertions, 0 deletions
diff --git a/v4.0/src/INC/MACRO.DEF b/v4.0/src/INC/MACRO.DEF
new file mode 100644
index 0000000..cf11a24
--- /dev/null
+++ b/v4.0/src/INC/MACRO.DEF
@@ -0,0 +1,19 @@
1 PAGE
2;***************************************************************************;
3; MACRO DEFINITION ;
4;***************************************************************************;
5
6PRINT MACRO MESSAGE
7 MOV DX,OFFSET MESSAGE&_PTR
8 PUSH DX
9 PUSH CS
10 CALL PRINTF
11ENDM
12
13
14
15INPUT MACRO MESSAGE
16 PRINT MESSAGE
17 CALL PROMPT
18ENDM
19 \ No newline at end of file