摘要:
自己写的,可以实现练习题的要求,而且个人感觉比网上常见的答案还精炼一些。assumecs:codesg,ds:datadatasegmentdb'welcometomasm!'db00000010B,00100100B,01110001Bdw0b86eh,0b878h,0b882hdataendscodesgsegmentstart:movcx,3s1:movax,data;setdataaddressmovds,axmovsi,cx;setlineindsmovah,data:[15+si];getfont00000010B,00100100B,01110001BADDsi, 阅读全文
摘要:
题目要求将代码补全,JMP 可以回到程序开始位置。下面是网上的答案, 运行是正确的, 但我有个疑惑是红色标志的代码好像是可有可无,我去掉这行一样是满足要求。不知道这行的用意是什么?assume cs:codedata segmentdd 12345678Hdata endscode segment start: mov ax, data mov ds, ax mov bx, 0 mov [bx], bx mov [bx+2], cs jmp word ptr ds:[0] mov ax, 4c00h int 21hcode endsend start 阅读全文
摘要:
程序时,我在学习“汇编语言程序设计(第二版)王爽” 第四章实验3程序时,出现上面的错误信息。将SP 该为16的倍数就好了。 猜想原因和现在的机器是32 位。具体原因不理解。有明白同学请不吝赐教 阅读全文
摘要:
The default selectfile's selectpattern only support on exention name.For example, command below can only retrieve jpg image.If you want both jpg and gif, you need two clause and combine the outputs. [代码]Alternatively, you can use LINQ and regular expression like below, but the code has issue when im 阅读全文
摘要:
I just begin to learn something about Spring.Net, heaps of probem are waiting for me. The very first one has been solved. It is an error saying “Cannot create OBJ folder” when I try to strat the move... 阅读全文
摘要:
Unix text file uses linefeed only to indicate end of line, the .net streamreader's readline function is not working with unix text file.I made a small wrapper for StreamReader class to make it is work... 阅读全文
摘要:
My environment is Crywin in windows vista.What I did is download autotrace and unzip it and copy everything into C:\cygwin\usr\local\binThen you can see the menu in element -> autotrace. 阅读全文
摘要:
Environment gs870w32.exe, download from http://sourceforge.net/projects/ghostscript/ My program code and output Useful tutorial http://csc.ocean-pioneer.com/docum/csc_postscript.html http://www-cdf.... 阅读全文
摘要:
Add reference System.Configuration 阅读全文
摘要:
It is quite annoying when a .net program try to update user interface control from a seperate long run task thread.The runtime give me exception “Control control name accessed from a thread othe... 阅读全文