摘要: GDT_DES : DESCRIPTOR 0 0 0[section .gdt]GDT_DES : DESCRIPTOR 0 0 0 ;空白描述符VIDEO_DES : DESCRIPTOR 0x0B8000H 0x0FFFFH DA_DRWCODE32_DES : DESCRIPTOR 0 0 DA_C|DA_32 ;32位,不知道intel如何弥补64位的这个窟窿,补丁越补越丑,越不协调[section .s16][bits 16][section .gdt]GDT_DES : DESCRIPTOR 0 0 0 ;空白描述符VIDEO_DES : DES... 阅读全文
posted @ 2013-12-05 18:04 youJumpILook 阅读(257) 评论(0) 推荐(0) 编辑
摘要: [SECTION .s16][BITS 16]LABEL_BEGIN: mov ax, cs mov ds, ax mov es, ax mov ss, ax mov sp, 0100h ; 初始化 32 位代码段描述符 xor eax, eax mov ax, cs shl eax, 4 add eax, LABEL_SEG_CODE32 mov word [LABEL_DESC_CODE32 + 2], ax shr eax, 16 mov ... 阅读全文
posted @ 2013-12-05 17:12 youJumpILook 阅读(394) 评论(0) 推荐(0) 编辑
摘要: from:http://www.cnblogs.com/lonelyDog/archive/2012/06/05/2536228.html 这种情况下用一下办法:1、clean整个Project2、重新Build一下下Project3、设置Build Automatically,自动编译工程文件------------------------------------------------------------------------------------------------如此步骤之后还是得不到解决,仔细发现:发现一个XXX.xml文件报错,修改之,好了,原来R.java会根据xm. 阅读全文
posted @ 2013-11-13 19:26 youJumpILook 阅读(1439) 评论(0) 推荐(0) 编辑
摘要: 导入工程的“The import android cannot be resolved”错误解决方法 2012-03-02 | 阅: 转: | 分享 通过eclipse的import功能导入一个工程,出现了“The import android cannot be resolved”错误。 其实这个错误是Android的SDK问题,我们设置SDK的版本就可以了。 有如下方法1:... 阅读全文
posted @ 2013-11-10 10:18 youJumpILook 阅读(1690) 评论(0) 推荐(0) 编辑
摘要: Java 中override、overload、overwrite区别,以及与多态的关系 from:http://blog.csdn.net/lzhang007/article/details/7960950 分类: java override overload overwrite 2012-09-09 20:22 961人阅读 评论(1) 收藏 举报javafloatparametersbehaviormethodsclass一 overload:是重载的意思,这没啥能混淆的了,就是在同一个类当中,为了增加通用性,写了很多方法,这些方法只有一个要求,参数的数量和类型不同,但返回值和方法属.. 阅读全文
posted @ 2013-10-23 14:31 youJumpILook 阅读(3464) 评论(1) 推荐(0) 编辑
摘要: 一直不清楚c++的sizeof,现在通过实验得到了一些了解。 1 #include 2 3 using namespace std; 4 5 class A{ 6 private: 7 char * a1; 8 // ! static int totalPeople=0; //error: ISO C++ forbids in-class initialization of non-const static member 'People::totalPeople'| 9 public :10 A(){11 a1 = (char *)new st... 阅读全文
posted @ 2013-10-15 08:40 youJumpILook 阅读(354) 评论(0) 推荐(0) 编辑
摘要: 1.save Images ;Image Download Ⅱ #下图2.adblock #拦截广告3.downloadhelper #下载youtube等视频4. 阅读全文
posted @ 2013-09-14 18:29 youJumpILook 阅读(158) 评论(0) 推荐(0) 编辑
摘要: http://www.youtube.com/watch?v=cTWBxZpwIMo 阅读全文
posted @ 2013-09-07 00:41 youJumpILook 阅读(206) 评论(0) 推荐(0) 编辑
摘要: 相册广场游戏登录注册关注此空间hoo's space2010-04-05 21:33《Orange’s 一个操作系统的实现》实验笔记生成软盘镜像文件a.img的方法Windows 平台1. 使用WinHex软件,新建大小为1474560bytes的文件,然后保存。2. 使用WinImage软件,新建大小为1.44MB的文件,然后保存,注意,保存的类型为“所有文件(*,*)”,文件名为“a.img”。Linux平台1. 使用dd命令:dd if=/dev/zero of=a.img bs=512 count=2880Windows和linux如果安装了borchs虚拟机,则还可以通过bx 阅读全文
posted @ 2013-08-12 15:15 youJumpILook 阅读(432) 评论(0) 推荐(0) 编辑
摘要: 可以参考的资料:1.关于第三章的mount:http://blog.csdn.net/iefswang/article/details/8455101 阅读全文
posted @ 2013-08-12 14:21 youJumpILook 阅读(145) 评论(0) 推荐(0) 编辑