http://blog.csdn.net/ly21st http://ly21st.blog.chinaunix.net
发布时间:2012-01-01 14:16:44
assume cs:codecode segment start: jmp int0msg: db "I am pleasure"int0: mov ax,cs mov ds,ax mov ax,0b800h mov es,ax mov si,msg mov bx,(80*12+30)*2 mov cx,13s: mov al,ds:[si] mov es:[bx],al mov es:[bx+1],0ch .........【阅读全文】
发布时间:2011-12-30 13:14:15
汇编程序版本1;我们的启动程序实现的功能是在屏幕中央;打印一行字符串即可org 07c00h ;指令明确告诉编译器我程序的段地址是7c00h ;而不是原来的 00000 .........【阅读全文】
发布时间:2011-12-20 21:39:13
文件share_proc.c #include <stdio.h>#include <stdlib.h>#include <sys/types.h>#include <sys/shm.h>#include <string.h>#include <unistd.h>#include <sys/wait.h> struct A{ int x; &nb.........【阅读全文】