freepeople性欧美熟妇, 色戒完整版无删减158分钟hd, 无码精品国产vα在线观看DVD, 丰满少妇伦精品无码专区在线观看,艾栗栗与纹身男宾馆3p50分钟,国产AV片在线观看,黑人与美女高潮,18岁女RAPPERDISSSUBS,国产手机在机看影片

正文內(nèi)容

[工學(xué)]chapter9theassemblyprocess-展示頁

2024-10-27 23:36本頁面
  

【正文】 tements ENDM EXAMPLE: pause MACRO output pressMsg。 input stringIn, 5。 input stringIn, 5。 宏的參數(shù) 宏的參數(shù)使用非常靈活 ? 宏定義時, ? 可以 無參數(shù) ? 可以帶有 一個參數(shù) ? 也可以具有 多個參數(shù) ? 參數(shù)可以是 常數(shù)、變量、存儲單元、指令(操作碼)或它們的一部分,也可以是 表達式 ? 宏定義體可以是任何合法的匯編語句,既可以是 硬指令序列 ,又可以是 偽指令序列 Look at this example… min2 MACRO first, second mov eax, first cmp eax, second jle endIfMin mov eax, second endIfMin: ENDM min2 eax, ebx min2 value1, value How to expansion? ;宏定義 shlext macro shloprand,shlnum push cx mov cl,shlnum shl shloprand,cl pop cx endm ;宏指令 shlext ax,6 ;宏展開 1 push cx 1 mov cl,06 1 shl ax,cl 1 pop cx ;統(tǒng)一 4條移位指令的宏指令 shift macro soprand,snum,sopcode push cx mov cl,snum samp。 soprand,cl pop cx endm ;統(tǒng)一移位和循環(huán)移位 8條指令的宏指令 shrot macro sroprand,srnum,sropcode push cx mov cl,srnum sropcode sroprand,cl pop cx endm 替換操作符 ;宏定義 dstring macro string db ’amp。’,0dh,0ah,’$’ endm ;宏調(diào)用 dstring This is a example. dstring 0 ! Number ! 10 ;宏展開 1 db ’This is a example.’, 0dh,0ah,’$’ 1 db ’0 Number 10’, 0dh,0ah, ’$’ 轉(zhuǎn)義注釋符 傳遞注釋符 與宏有關(guān)的偽指令 ? 局部標號偽指令 LOCAL 標號列表 宏定義體采用了標號,應(yīng)使用 LOCAL加以說明 它必須是宏定義 MACRO語句之后的第一條語句 ? 宏定義刪除偽指令 PURGE 宏名表 不需要某個宏定義時,可以把它刪除 ? 宏定義退出偽指令 EXITM 偽指令 EXITM表示結(jié)束當前宏調(diào)用的展開 第 5章 ;宏定義 absol macro oprd local next cmp oprd,0 jge next neg oprd next: endm ;宏調(diào)用 absol word ptr [bx] absol bx ;宏展開 1 cmp word ptr [bx],0 1 jge ??0000 1 neg word ptr [bx] 1 ??0000: 1 cmp bx,0 1 jge ??0001 1 neg bx 1 ??0001: 單獨占一行 LOCAL directive ? The LOCAL directive is used only within a macro definition and must be the first statement after the MACRO directive. min2 MACRO first, second LOCAL endIfMin mov eax, first cmp eax, second jle endIfMin mov eax, second endIfMin: ENDM 比較 ? 僅是 源程序級 的 簡化 :宏調(diào)用 在匯編時 進行程序語句的展開,不需要返回;不減小目標程序,執(zhí)行速度
點擊復(fù)制文檔內(nèi)容
教學(xué)課件相關(guān)推薦
文庫吧 www.dybbs8.com
備案圖鄂ICP備17016276號-1