摘要: Epigrams on Programming 阅读全文
posted @ 2018-04-17 18:41 tanghuimin0713 阅读(118) 评论(0) 推荐(0) 编辑
摘要: 正则表达式教程——语法篇 工具 阅读全文
posted @ 2018-04-04 19:34 tanghuimin0713 阅读(91) 评论(0) 推荐(0) 编辑
摘要: https://stackoverflow.com/questions/33676829/vim-configuration-for-linux-kernel-development?newreg=946e68f60f3a45208d9040d74c739b64 阅读全文
posted @ 2018-04-02 13:45 tanghuimin0713 阅读(355) 评论(0) 推荐(0) 编辑
摘要: nasm -f elf -o a.o a.asm gcc -c -m32 -o b.o b.c ld -s -m elf_i386 -Ttext 0x30400 -o b.bin b.o a.o 阅读全文
posted @ 2017-07-15 11:25 tanghuimin0713 阅读(157) 评论(0) 推荐(0) 编辑
摘要: FreeDOS可以运行在实模式或保护模式下,在启动FreeDOS时有4种运行模式选择: 前两种运行在保护模式下, 后两种运行在实模式下。 根据How to tell whether your CPU is running in real mode or protected mode,可以通过如下方式 阅读全文
posted @ 2017-05-18 08:30 tanghuimin0713 阅读(420) 评论(0) 推荐(0) 编辑
摘要: How to tell whether your CPU is running in real mode or protected mode 阅读全文
posted @ 2017-05-18 07:55 tanghuimin0713 阅读(111) 评论(0) 推荐(0) 编辑
摘要: yum install openvpn openvpn /home/thm/Document/openvpn/Open_UDP/Japan-01-U.ovpn 阅读全文
posted @ 2017-04-27 06:53 tanghuimin0713 阅读(78) 评论(0) 推荐(0) 编辑
摘要: QEMU/FreeDOS 阅读全文
posted @ 2017-03-27 08:43 tanghuimin0713 阅读(337) 评论(0) 推荐(0) 编辑
摘要: 1. code 2. 编译成bin文件 nasm -f bin boot.asm -o boot.bin 3.运行 1) qemu qemu-system-i386 boot.bin 2) 虚拟机从floppy启动 dd if=/dev/zero of=floppy.img bs=512 count 阅读全文
posted @ 2017-03-05 13:06 tanghuimin0713 阅读(513) 评论(0) 推荐(0) 编辑
摘要: Kernel 101 –Let’s write a Kernel 阅读全文
posted @ 2017-02-17 18:54 tanghuimin0713 阅读(337) 评论(0) 推荐(0) 编辑