大约有 30,000 项符合查询结果(耗时:0.0304秒) [XML]
nasm 汇编语言编译工具 - 软件下载 - 清泛网 - 专注C/C++及内核技术
nasm 汇编语言编译工具nasm_asmnasm 汇编 编译NASM是一个为可移植性与模块化而设计的一个80x86的汇编器。NASM是一个为可移植性与模块化而设计的一个80x86的汇编器。
安装方法:压缩包解压后点“nasm.exe”即可使用,“nasm.exe”是...
Why do stacks typically grow downwards?
...xplains how stack growth direction was chosen for 8080 (and eventually for 8086) in "Intel Microprocessors: 8008 to 8086":
The stack pointer was chosen to run "downhill" (with the stack advancing toward lower memory) to simplify indexing into the stack from the user's program (positive indexing)...
如何在Visual Studio中运行和调试汇编代码 - 其他 - 清泛IT社区,为创新赋能!
使用内联汇编__asm,如下:
int _tmain(int argc, _TCHAR* argv[])
{
int a = 1;
__asm{
xor eax, eax
 ...
Where can I learn jQuery? Is it worth it?
...nswered Sep 2 '08 at 14:39
blake8086blake8086
67988 silver badges1818 bronze badges
...
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...
