大约有 30,000 项符合查询结果(耗时:0.0272秒) [XML]

https://stackoverflow.com/ques... 

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. ...
https://www.tsingfun.com/it/tech/743.html 

Linux的诞生和发展 - 更多技术 - 清泛网 - 专注C/C++及内核技术

...作系统,MINIX 并不是优秀者,但它同时提供了用C 语言和汇编语言写的系统源代码。这是第一次使得有抱负的程序员或hacker 能够阅读操作系统的源代码,在当时这种源代码是软件商一直小心地守护着的。   GNU 计划 GNU 计划...
https://www.tsingfun.com/it/os... 

第一个Hello,OS World操作系统 - 操作系统(内核) - 清泛网 - 专注C/C++及内核技术

...例子最终运行效果: 编译运行环境: nasm:Inter x86汇编编译工具,用户将我们的汇编代码编译为二进制。(下载地址) Bochs:运行os的虚拟机工具,模拟加载我们生成的软盘映像,并运行os。(下载地址) 代码如下:...
https://bbs.tsingfun.com/thread-696-1-1.html 

C/C++函数调用过程、原理、堆栈内存的使用等(汇编层面解析) - C/C++ - 清...

待总结。。。
https://www.tsingfun.com/it/os_kernel/511.html 

Linux反编译全攻略 - 操作系统(内核) - 清泛网 - 专注C/C++及内核技术

...: 操作平台: gentoo 2004.3 # kernel 2.6.9 逆向工具: 反汇编 -- objdump (这个工具基本上每个LINUX上都有)、lida( http://lida.sourceforge.net/ ) 调试器 -- gdb 十六进制编辑器 -- hexedit 文本编辑器 -- vim 压缩工具 -- upx (http:...
https://stackoverflow.com/ques... 

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...
https://www.tsingfun.com/it/tech/1472.html 

LINGO使用指南 - 更多技术 - 清泛网 - 专注C/C++及内核技术

...型窗口,建立的模型都都要在该窗口内编码实现。下面举两个例子。 例1.1 如何在LINGO中求解如下的LP问题: 在模型窗口中输入如下代码: min=2*x1+3*x2; x1+x2>=350; x1>=100; 2*x1+x2<=600; 然后点击工具条上的按钮 即可。 例1.2 使...
https://www.tsingfun.com/it/tech/1480.html 

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...
https://www.tsingfun.com/it/cpp/1234.html 

Excel RTD(Excel Real-Time Data)实时刷新数据技术 - C/C++ - 清泛网 - 专注C/C++及内核技术

...下,首先定义好请求的参数,我们的实时行情请求参数有两个,一个是股票代码,一个是指标的名称。因为我们请求的是http,而不是注册事件回调的方式,所以需要在RTD中使用timer控件去主动拉去请求,然后请求处理完成之后,...
https://www.tsingfun.com/it/cp... 

内存管理内幕:动态分配的选择、折衷和实现 - C/C++ - 清泛网 - 专注C/C++及内核技术

...动的内存管理实践的基本概念。 追溯到在 Apple II 上进行汇编语言编程的时代,那时内存管理还不是个大问题。您实际上在运行整个系统。系统有 多少内存,您就有多少内存。您甚至不必费心思去弄明白它有多少内存,因为每...