摘要:
Epigrams on Programming 阅读全文
摘要:
正则表达式教程——语法篇 工具 阅读全文
摘要:
https://stackoverflow.com/questions/33676829/vim-configuration-for-linux-kernel-development?newreg=946e68f60f3a45208d9040d74c739b64 阅读全文
摘要:
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 阅读全文
摘要:
FreeDOS可以运行在实模式或保护模式下,在启动FreeDOS时有4种运行模式选择: 前两种运行在保护模式下, 后两种运行在实模式下。 根据How to tell whether your CPU is running in real mode or protected mode,可以通过如下方式 阅读全文
摘要:
How to tell whether your CPU is running in real mode or protected mode 阅读全文
摘要:
yum install openvpn openvpn /home/thm/Document/openvpn/Open_UDP/Japan-01-U.ovpn 阅读全文
摘要:
QEMU/FreeDOS 阅读全文
摘要:
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 阅读全文
摘要:
Kernel 101 –Let’s write a Kernel 阅读全文