寄信人: aaaaatiger (CS03.|^_^^_^^_^^_^^_^^_^)
标 题: p_256_7.12
发信站: 郁金香BBS站 (Tue Nov 23 15:47:35 2004)
来 源: 10.10.82.156
; htoasc macro
; and al,ofh
; add al,90h
; daa
; adc al,40h
; daa
; endm
;p_256_7.12
initz macro
mov ax,@data
mov ds,ax
mov es,ax
endm
prompt macro message
mov ah,09h
lea dx,messge
int 21h
endm
finish macro
mov ax,4c00h
int 21h
endm
.model small
.386
.stack 200h
.data
messg1 db 'customer name?',13,10,'$'
messg2 db 'customer address?',13,10,'$'
.code
begin proc far
.sall
initz
.xall
prompt messg1