datas segment
kw db 02h,79,00,00
kw1 equ this word;此處輸入資料段**
datas ends
stacks segment
;此處輸入堆疊段**
stacks ends
codes segment
assume cs:codes,ds:datas,ss:stacks
start:lea ax,kw1
mov si,ax
mov ax,024fh
mov [si],ax
mov ax,0000h
mov [si+2],ax
;delay:mov cx,0
; inc cx
; cmp cx,110
; jne delay
call wall
mov ah,4ch
int 21h
wall proc near
mov ax,datas
mov ds,ax
lea ax,kw
mov si,ax
mov cx,1
mov bl,06h
mov al,'*'
mov dx,[si+2]
wei1:mov bh,byte ptr[si]
cmp bh,dh
jz exit
nei:mov bh,byte ptr[di+1]
cmp bh, dl
jz wei
mov ah,2
mov bh,0
int 10h
mov ah,9
int 10h
inc dl
jmp nei
wei:add dh,1
mov dl,byte ptr[si+3]
jmp wei1
;此處輸入**段**
exit:ret
wall endp
codes ends
end start
哪位大俠幫我看看
最近做乙個東西,就拿圖書管理打個比方吧。工具為 vc 資料庫為sql server,表一中放的是 借書的日期 以及 借多長時間 表二中放的是 提前多少天發郵件通知 表三中放的是 郵件接受人的郵箱位址 現在想做的功能 就是 1.在還書日期提前x天給借書人發郵件提醒 還書 2.同時給管理員發訊息,該給誰...
誰幫我看看我的程式,執行不起,謝謝了
include include 包含pcap include define max print 80 define max line 16 void processpacket u char const struct pcap pkthdr const u char void main int ar...
有沒有大佬幫我看看,
總是出棧後gettop就成空白了 求大神指點,萬分感謝 程式本身沒有語法錯誤,qu x include stdafx.h using namespace std void showstackmenu typedef int status typedef struct sqstack void ini...