資源描述:
《十六進制轉(zhuǎn)十進制(匯編masn).doc》由會員上傳分享,免費在線閱讀,更多相關內(nèi)容在教育資源-天天文庫。
1、;十六-十進制轉(zhuǎn)換;程序設計的要求:通過鍵盤給一個四位的16進制數(shù),程序把它轉(zhuǎn)換成10進制數(shù),并顯示出來。;;把輸入的4位16進制數(shù)以10十進制的值存放到變量num中,注意num可能會有5位數(shù)。所以下面;就通過÷,%(10000,1000,100,10)來得到每一位數(shù),即十進制數(shù).CSEGSEGMENTassumecs:CSEG,ds:DSEG,ss:SSEGMAINPROCFAR;主程序入口movnum,0movcx,4;輸入4位16進制數(shù)(這里沒有處理少于或多于4位的情況)L1:movah,01hint21hpus
2、hcxmovcl,4shlnum,cl;輸入的數(shù)以10進制的形式存到num中popcxcmpal,3ahjbs1subal,07hs1:subal,30hmovah,0addnum,axmovbx,numloopL1;******************************************************************************;輸入空格以結(jié)束。movah,01hint21hmovah,02hmovdl,'('int21hmovdl,'1'int21hmovdl,'6'int
3、21hmovdl,')'int21hmovdl,''int21h0;******************************************************************************;callfun;調(diào)用主函數(shù);******************************************************************************;movah,02hmovdl,'('int21hmovdl,'1'int21hmovdl,'0'int21hmo
4、vdl,')'int21hcallchange;******************************************************************************;callexit;退出;******************************************************************************;MAINENDPfunprocmovcx,10000d;把除數(shù)存放到cx中calldec_divmovcx,1000dcalldec_d
5、ivmovcx,100dcalldec_divmovcx,10dcalldec_divmovcx,1dcalldec_divretfunendpdec_divproc;除法實現(xiàn),除數(shù)為cx的值movax,bxmovdx,0divcxmovbx,dxmovdl,aladddl,30hmovah,02hint21hretdec_divendp;*******************************************************************************************
6、******;下面代碼僅供測試使用printbprocpushaxmovdl,almovah,02hint21hpopaxretprintbendpprintwprocpushaxpushbxpushcxMOVcx,4a7:movdi,bxPUSHcxMOVcl,4ROLdi,clmovbx,diMOVdl,blANDdl,0fhADDdl,30hCMPdl,3ahJBa8ADDdl,7a8:MOVah,2INT21hPOPcxLOOPa7popcxpopbxpopaxretprintwendp;***********
7、**************************************************************************************;*************************************************************************************************;回車換行changeprocpushaxmovah,02hmovdl,0ahint21hmovah,02hmovdl,0dhint21hpopaxretc
8、hangeendp;*************************************************************************************************;**********************************************************