摘要:lesson 3: nasm
in this lesson we will learn to use an assembler to write our programs. in previous lessons we have assembled them using debug. after playing around with this for a while, you will qui......
摘要:lesson 2: making our first bootable disk
in this lesson, we will learn how to create a boot program on a floppy disk. we will start by modifying the microsoft dos boot record.
for our purposes, we w......
WriteYourOwnOperatingSystemTutorial(5)lesson 5: let’s make it interactive
we are going to be using function 0, interrupt 0x16. this is done easily with the following two instructions. 【程序编程相关:
fedora 中创建soft raid】
all of this printing stuff to the screen is fun, but no operating system would be any good at all if it did not provide any interactivity. let’s make it read input from the keyboard. again we will be using calls to a function in bios to read the keyboard. 【推荐阅读:
测试远程登录的脚本】
int 0x16 ; wait for a keypress 【扩展信息:
[shell] 微软测试题】
xor ah, ah ; we want function zero
...
下一页 摘要:[开源项目之五] stunnel--通用ssl加密程序stunnel是一个可以用ssl对任意 tcp 连接加密的程序。它可以运行在多种unix和windows操作系统之上。这样说来,它很好的解决了ssl不能对现有的旧的应用程序传输的数据加密的问题,也就是说,在stunnel出现之前,要实现安全的数据传输,只能依靠在应用程序之中添加ssl代码的方式来提高安全性,但现在,可以不这样做了,strunn......