inel 汇编语言
胖虎技安
这个作者很懒,什么都没留下…
展开
-
汇编语言 在控制台console显示一段随机颜色的文本 x86 汇编语言 asm文件 irvine32 intel 汇编语言
题目: Write a program that randomly chooses between threedifferent colors for displaying text on the screen. Use a loop todisplay twenty lines of text, each with a randomly chosen color.The probabilities for each color are to be as follows: white = 30%,blue原创 2021-07-11 19:05:22 · 286 阅读 · 0 评论 -
汇编语言代码模板 x86 汇编语言 asm文件 irvine32, intel 汇编语言
一般格式: .386 .model flat,stdcall .stack 4096 ExitProcess PROTO, dwExitCode:DWORD DumpRegs PROTO .data .code main PROC mov eax,10000h ; EAX = 10000h add eax,40000h ; EAX = 50000h sub eax,20000h ; EAX = 30000h call DumpRegs INVOKE ExitProcess,0 main ENDP END m原创 2021-07-11 18:32:24 · 319 阅读 · 0 评论