1 ; multi-segment executable file template. 2 3 data segment 4 ; add your data here! 5 pkey db "press any key...$" 6 STRING DB 'The date is FEB&03$' 7 ends 8 9 stack segment10 dw 128 dup(0)11 ends12 13 code segment14 start:15 ; set segment registers:16 mov ax, data17 mov ds, ax18 mov es, ax19 20 ; add your code here21 mov cx,1922 mov si,-123 mov al,'&'24 25 NEXT:26 inc si27 cmp al,STRING[si]28 loopne NEXT29 je FOUND30 FOUND:31 mov STRING[si],20H32 33 lea dx, STRING34 mov ah, 935 int 21h ; output string at ds:dx36 37 ; wait for any key.... 38 mov ah, 139 int 21h40 41 mov ax, 4c00h ; exit to operating system.42 int 21h 43 ends44 45 end start ; set entry point and stop the assembler.46 47 48