大约有 30,000 项符合查询结果(耗时:0.0256秒) [XML]
Where can I learn jQuery? Is it worth it?
...nswered Sep 2 '08 at 14:39
blake8086blake8086
67988 silver badges1818 bronze badges
...
如何在Visual Studio中运行和调试汇编代码 - 其他 - 清泛IT社区,为创新赋能!
使用内联汇编__asm,如下:
int _tmain(int argc, _TCHAR* argv[])
{
int a = 1;
__asm{
xor eax, eax
 ...
What's the difference between a word and byte?
... also a few processors who have a different pointer size: for example, the 8086 is a 16-bit processor which means its registers are 16 bit wide. But its pointers (addresses) are 20 bit wide and were calculated by combining two 16 bit registers in a certain way.
...
第一个Hello,OS World操作系统 - 操作系统(内核) - 清泛网 - 专注C/C++及内核技术
...例子最终运行效果:
编译运行环境:
nasm:Inter x86汇编编译工具,用户将我们的汇编代码编译为二进制。(下载地址)
Bochs:运行os的虚拟机工具,模拟加载我们生成的软盘映像,并运行os。(下载地址)
代码如下:...
Linux的诞生和发展 - 更多技术 - 清泛网 - 专注C/C++及内核技术
...作系统,MINIX 并不是优秀者,但它同时提供了用C 语言和汇编语言写的系统源代码。这是第一次使得有抱负的程序员或hacker 能够阅读操作系统的源代码,在当时这种源代码是软件商一直小心地守护着的。
GNU 计划
GNU 计划...
Linux反编译全攻略 - 操作系统(内核) - 清泛网 - 专注C/C++及内核技术
...:
操作平台: gentoo 2004.3 # kernel 2.6.9
逆向工具:
反汇编 -- objdump (这个工具基本上每个LINUX上都有)、lida( http://lida.sourceforge.net/ )
调试器 -- gdb
十六进制编辑器 -- hexedit
文本编辑器 -- vim
压缩工具 -- upx (http:...
size_t vs. uintptr_t
...le segment may be able to address only 64KB (for example the old real-mode 8086 architecture).
While these aren't commonly in use in desktop machines anymore, the C standard is intended to support even small, specialized architectures. There are still embedded systems being developed with 8 or 16 b...
windbg 备忘 - 更多技术 - 清泛网 - 专注C/C++及内核技术
...vobj extension displays detailed information about a DRIVER_OBJECT.
u 反汇编
uf 反汇编函数
p 单步
bp(bu,bm) 断点
g
.cls
.reload
u eip
u eip l20
e 修改内存
r 修改寄存器
!process 0 0 calc.exe
!process 0 0 system
!process pid
.formats 000ab048
!dd
!pte
!ptov
!v...
LINGO使用指南 - 更多技术 - 清泛网 - 专注C/C++及内核技术
...型窗口,建立的模型都都要在该窗口内编码实现。下面举两个例子。
例1.1 如何在LINGO中求解如下的LP问题:
在模型窗口中输入如下代码:
min=2*x1+3*x2;
x1+x2>=350;
x1>=100;
2*x1+x2<=600;
然后点击工具条上的按钮 即可。
例1.2 使...