摘要: <!--StartFragment--> Standard 标准模式, 每次创建一个Activity都会创建一个新的实例 SingleTop 栈顶复用模式, 如果实例已经存在任务栈的栈顶, 那么此Activity不会被创建, 同时它的onNewInte会被回调 SingleTask 单任务栈模式, 阅读全文
posted @ 2016-05-23 12:43 李晓茂的杂货铺 阅读(150) 评论(0) 推荐(0) 编辑
摘要: <!--StartFragment-->1.正常情况下的生命周期<!--EndFragment--> <!--StartFragment-->Activity在onStop或者onPause的时候如果内存不足, 会被系统干掉, 然后重新onCreate<!--EndFragment--> <!--S 阅读全文
posted @ 2016-05-23 12:40 李晓茂的杂货铺 阅读(129) 评论(0) 推荐(0) 编辑
摘要: 当机器被打开时,等电源稳定之后,电源会发送一个“加电成功信号”给芯片,以启动时钟生成器(8284);然后,CPU重新自设定为初试状态,开始准备运行。当CPU最初被启动的时候,系统RAM中是空的,没有任何内容可供执行。当然CPU设计者也知道这一点,所以他们对CPU进行了预先编程,以让CPU在这个阶段总... 阅读全文
posted @ 2015-02-15 15:38 李晓茂的杂货铺 阅读(222) 评论(0) 推荐(0) 编辑
摘要: 1 ;16位代码 2 [bits 16] 3 ;初始化实模式下的数据段,代码段,堆栈段 4 mov eax, cs 5 mov ss, eax 6 mov sp, 0x7C00 ;实模式下的栈在引导扇... 阅读全文
posted @ 2015-02-15 15:26 李晓茂的杂货铺 阅读(255) 评论(0) 推荐(0) 编辑
摘要: The 8253 was used in IBM PC compatibles since their introduction in 1981.[1] In modern times, this PIT is not included as a separate chip in an x86 PC. Rather, its functionality is included as part ... 阅读全文
posted @ 2014-10-23 14:30 李晓茂的杂货铺 阅读(154) 评论(0) 推荐(0) 编辑
摘要: PC/AT 微机级联式8259控制系统 The 8259 was introduced as part of Intel's MCS 85 family in 1976. The 8259A was included in the original PC introduced in 1981 and maintained by the PC/XT when introduced in 1983.... 阅读全文
posted @ 2014-10-23 14:07 李晓茂的杂货铺 阅读(792) 评论(0) 推荐(0) 编辑
摘要: ?12345678910111213;----------------------------------------------------;窗口程序的运行过程;----------------------------------------------------1. ;得到应用程序的句柄(GetModuleHandle)2. ;注册窗口类(RegisterClassEx),在注册之前,先要填写RegisterClassEx的参数WNDCLASSEX结构3. ;建立窗口(CreateWindowEx)4. ;显示窗口(showWindow)5. ;刷新窗口客户区(UpdateWindow) 阅读全文
posted @ 2013-12-23 00:29 李晓茂的杂货铺 阅读(128) 评论(0) 推荐(0) 编辑
摘要: ?12345678910111213141516171819202122232425262728293031;----------------------------------------------------WINDCLASSEX STRUCT cbsize DWORD ? ;结构的字节数 style DWORD ? ;窗口类风格 lpfnwndproc DWORD ? ;窗口过程的地址 cbclsextra DWORD ? ;自定义数据 cbwndextra DWORD ? ;自定义数据 hinstance DWORD ? ;所属的实例句柄 hicon DWORD ? ;窗口图标 hc 阅读全文
posted @ 2013-12-23 00:24 李晓茂的杂货铺 阅读(128) 评论(0) 推荐(0) 编辑
摘要: ;----------------------------------------------------- ;匈牙利命名法 ;----------------------------------------------------- b ;表示byte w ;表示word dw ;表示dword h ;表示句柄 lp ;表示指针 sz ;表示以0结尾的字符串的指针 lpsz ... 阅读全文
posted @ 2013-12-23 00:18 李晓茂的杂货铺 阅读(143) 评论(0) 推荐(0) 编辑
摘要: CS_HREDRAW 如果窗体移动或者客户区宽度改变则重绘窗体 CS_VREDRAW 如果窗体移动或者客户区高度改变则重绘窗体 ... 阅读全文
posted @ 2013-12-23 00:15 李晓茂的杂货铺 阅读(226) 评论(0) 推荐(0) 编辑