http://www.cnblogs.com/Soar1991/p/6669862.html DevExpress 是一个比较有名的界面控件套件,提供了一系列优秀的界面控件。这篇文章将展示如何在拥有源代码的情况下,对 DevExpress 的程序集进行重新编译。 系统必备 Windows 7 SP1 ...
分类:
其他好文 时间:
2017-06-10 10:42:57
阅读次数:
305
This document describes the installation of PostgreSQL using the source code distribution. (If you are installing a pre-packaged distribution, such as... ...
分类:
数据库 时间:
2017-06-08 14:52:35
阅读次数:
291
转载 本文介绍一些Java源代码优化和分析工具,以帮助我们优化代码以及检查源代码中的潜在问题。 本文英文原文来源:http://java.dzone.com/articles/java-tools-source-code 1. PMD 网址:http://pmd.sourceforge.NET/ P ...
分类:
其他好文 时间:
2017-06-08 10:39:04
阅读次数:
197
Get the source code. The following packages contain the source at the same revision as the above binaries:pypy-2.3.1-src.tar.bz2 (sources, Unix line e ...
分类:
编程语言 时间:
2017-06-02 11:29:29
阅读次数:
233
预备知识: (1) ret :修改IP IP = SS*16 + SP SP+=2 retf :修改CS,IP IP = SS*16 + SP ,SP+=2 , CS = SS*16 + SP , SP+=2 Source Code: assume cs:code stack segment db ...
分类:
其他好文 时间:
2017-06-01 17:49:26
阅读次数:
212
源码分析 之 Activity启动过程简要介绍和学习计划 来源: http://blog.csdn.net/luoshengyang/article/details/6685853声明:RTFSC(Read the fucking source code)是Linus的名言,也是学习IT技术一个重要... ...
分类:
移动开发 时间:
2017-05-31 19:08:55
阅读次数:
185
ds 数据段放入数据正确; 两次push 操作后,ss栈段正确; 由于pop 操作顺序,ds数据段并没有发生改变; Source Code: assume cs:code, ds:data, ss:stack data segment dw 0123H,0456H,0789H,0abcH,0defH ...
分类:
其他好文 时间:
2017-05-30 19:32:32
阅读次数:
223
预备知识: 段前缀的使用; ffff:0~ffff:b 和 0020:0~0020:b 的数据; 一次循环的复制效果: 但是,这种方式DS的数据得修改; Source Code: 于是,可以用两个段寄存器存放两个段地址; (原始数据) Source Code: ...
分类:
其他好文 时间:
2017-05-30 17:42:28
阅读次数:
156
masm 的下载,直接在机房拷贝,本打算直接在win10上编译连接好,但是发现还是不兼容;还是要利用DOSBox虚拟编译,连接; 开始加载程序,单步调试; 栈的效果: 因为这里的ss:sp位置恰好都是0,看不出ax,bx发生了交换; Source Code: ...
分类:
其他好文 时间:
2017-05-29 22:56:07
阅读次数:
204