码迷,mamicode.com
首页 >  
搜索关键字:asm move    ( 7986个结果
汇编入门学习笔记 (十四)—— 直接定址表
疯狂的暑假学习之 汇编入门学习笔记 (十四)—— 直接定址表 参考: 《汇编语言》 王爽 第16章 1. 描述单元长度的标号 普通的标号:a,b assume cs:code code segment a:db 1,2,3,4,5,6,7,8 b:dw 0 start: mov si,offset a mov di,offset b mov ah,0 mov cx,8 s: mov al,cs:[si] add cs:[di],ax inc si loop s mov...
分类:其他好文   时间:2014-07-24 10:42:58    阅读次数:235
Virtualbox mouse move in and out and file share with windows
How to use Virstalbox to share files with Linux and Windows, and to move the mouse in and out Virtualbox freely without click Ctrl key, herewith what I have done to achieve both....
分类:Windows程序   时间:2014-07-23 18:10:36    阅读次数:375
汇编入门学习笔记 (十三)—— 外中断
疯狂的暑假学习之 汇编入门学习笔记 (十三)—— 外中断 参考: 《汇编语言》 王爽 第15章 1.外中断信息 外中断分为可屏蔽中断和不可屏蔽中断 可屏蔽中断 先看看内中断所引发的中断过程: (1)取中断类型吗n。 (2)标志寄存器入栈,设置IF=0,TF=0. (3)CS、IP入栈 (4)(IP)=(n*4),(CS)=(n*4+2) 可屏蔽中断的中断过程于内中断所引发的中断过程不同的地方只是,第一步不同。可屏蔽中断的中断过程,CPU要先看IF的值,如果IF=0就不执行中断,如果IF=1执行...
分类:其他好文   时间:2014-07-23 13:32:56    阅读次数:245
Swift游戏实战-跑酷熊猫 07 平台的移动
这节内容我们来实现平台是怎么产生移动动画的。要点1 利用数组存放平台var platforms=[Platform]()2 有新的平台产生存放进数组platforms.append(platform)3 利用主场景的update方法不断地调用平台工厂类的move方法override func upd...
分类:移动开发   时间:2014-07-23 12:13:16    阅读次数:274
[leetcode]Triangle
TriangleGiven a triangle, find the minimum path sum from top to bottom. Each step you may move to adjacent numbers on the row below.For example, given...
分类:其他好文   时间:2014-07-22 22:47:52    阅读次数:230
【leetcode刷题笔记】Triangle
Given a triangle, find the minimum path sum from top to bottom. Each step you may move to adjacent numbers on the row below.For example, given the fol...
分类:其他好文   时间:2014-07-22 22:40:36    阅读次数:238
获取CPU编号
void?get_cpu_id() {??? char?szBuf[256]?= {0}; unsigned?int?s1?= 0U; unsigned?int?s2?= 0U; _asm{? MOV?EAX,01H? XOR?EDX,EDX CPUID???? MOV?DWORD?PTR[s1],EDX??? ...
分类:其他好文   时间:2014-07-22 22:37:53    阅读次数:240
汇编入门学习笔记 (十二)—— int指令、端口
疯狂的暑假学习之 汇编入门学习笔记 (十二)—— int指令、端口 参考: 《汇编语言》 王爽 第13、14章 一、int指令 1. int指令引发的中断 int n指令,相当于引发一个n号中断。 执行过程相当于: (1)取中断类型吗n。 (2)标志寄存器入栈;设置IF=0,TF=0。 (3)CS,IP入栈 (4)(IP)=(n*4),(CS)=(n*4+2) 例子1:编写、安装中断7ch,实现求一个word型数据的平方,用ax存放这个数据。...
分类:其他好文   时间:2014-07-21 23:37:53    阅读次数:324
AMDU恢复ASM磁盘组数据(测)
ASM asmdu asmdisk header...
分类:其他好文   时间:2014-07-21 23:27:29    阅读次数:367
poj1651Multiplication Puzzle(取数,区间DP)
Description The multiplication puzzle is played with a row of cards, each containing a single positive integer. During the move player takes one card out of the row and scores the number of points ...
分类:其他好文   时间:2014-07-21 22:11:18    阅读次数:289
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!