登录
首页 » PDF » hexinjishubiancheng

hexinjishubiancheng

于 2009-05-18 发布 文件大小:6079KB
0 191
下载积分: 1 下载次数: 4

代码说明:

  操作系统实验教程——核心技术编程实例。包括中断处理,文件管理等具体实例。主要采用汇编语言。(Experimental tutorial operating system- the core technology programming examples. Including interrupt handling, document management, such as concrete examples. The main use of assembly language.)

下载说明:请别用迅雷下载,失败请重下,重下不扣分!

发表评论

0 个回复

  • ucore-lab1
    Ucore是一个很小的适于学习的操作系统,此“麻雀”包含虚存管理、进程管理、处理器调度、同步互斥、进程间通信、文件系统等主要内核功能,总的内核代码量(C+asm)不会超过5K行。充分体现了“小而全”的指导思想。 这是ucore的实验1:系统软件启动过程。实验目的:操作系统是一个软件,也需要通过某种机制加载并运行它。在这里我们将通过另外一个更加简单的软件-bootloader 来完成这些工作。为此,我们需要完成一个能够切换到x86 的保护模式并显示字符的bootloader,为将来启动操作系统做准备。proj1 提供了一个非常小的bootloader,整个bootloader 的大小小于512 个字节,这样才能放到硬盘的主引导扇区中。通过分析和实现这个bootloader,读者可以了解到:基于分段机制的存储管理、设备管理的基本概念、PC 启动bootloader 的过程、bootloader 的文件组成、编译运行bootloader 的过程、调试bootloader 的方法、在汇编级了解栈的结构和处理过程、中断处理机制、通过串口/并口/CGA 输出字符的方法。文件中包括源代码、实验指导书和实验报告。(Ucore is a small operating system for learning, the " Sparrow" contains the virtual memory management, process management, processor scheduling, synchronization mutually exclusive, inter-process communication, file system and other major kernel functions, the total amount of kernel code ( C+ asm) no more than 5K lines. Fully embodies the " small" the guiding ideology. This is ucore experiment 1: the system software boot process. Purpose: the operating system is a software, but also need some mechanism to load and run it. Here we will adopt another more simple software-bootloader to complete these tasks. To this end, we need to be able to complete a switch to the x86 protected mode and display the characters bootloader, the operating system to start to prepare for the future. proj1 provides a very small bootloader, the bootloader is less than 512 bytes in size, so as to put the hard disk master boot sector. Through the analysis and to achieve this bootloader, the read)
    2011-06-07 14:36:34下载
    积分:1
  • zhexuejia
    哲学家问题,五个任务,吃饭,只有五支筷子不吃饭的时候思考(Allow phonetic typing EnglishSpanishArabicPhilosopher, five tasks, eating, and only five chopsticksDo not eat when thinkingAllow phonetic typing EnglishSpanishArabicPhilosopher, five tasks, eating, and only five chopsticksDo not eat when thinking)
    2016-05-08 14:31:56下载
    积分:1
  • !!real_information
    说明:  System Info for Delphi 7
    2020-06-19 19:00:01下载
    积分:1
  • clock页面置换算法
    clock页面置换算法 用CLOCK置换算法仿真请求分页系统 1、设计目的:用高级语言编写和调试一个内存分配程序,加深对内存分配算法的理解。 2、设计要求: 1) 实现请求分页存储管理方式的页面置换算法:CLOCK算法 2) 内存物理块数固定为15个,对多个作业采用可变分配全局置换的策略分配物理块 3) 作业数量与作业大小(10-20页)可在界面进行设置 4) 所有作业按RR算法进行调度,时间片长度为1秒 5) 可为每个作业随机产生引用的页面串,也可以人工输入引用的页面串,页面串长度50---100,要求必须包括作业所有的页面,可作为样例数据保存 6) 可读取样例数据(要求存放在外部文件中)进行作业数量、作业大小、页面串长度的初始化 7) 要求采用可视化界面,模拟内存分配和使用情况图,可在运行过程中随时暂停,查看当前内存物理块使用情况。 8) 每次全部作业运行结束后,要求打印出访问命中率 (clock page replacement algorithm)
    2013-05-12 10:42:56下载
    积分:1
  • zhiyuanguanlixitong
    操作系统课程设计 资源管理系统 safe() //用银行家算法判定系统是否安全 do{ printf(" *****输入要进行的操作 1:分配资源 2: 修改资源 3:显示资源 4:离开*****") scanf("%d",&choice) (courses on operating system design resource management system safe ()// algorithm with bankers determine whether the safety system do (printf ( " n***** input to the operation of a : 2 distribution of resources : 3 amend resources : resources four shows : left*****") Scanf ( "% d",)
    2007-06-15 18:54:11下载
    积分:1
  • DebianPacker_1_3_2
    打包解包DEB 非常简单快捷。是ios破解爱好者的福音(Packing and unpacking DEB)
    2021-01-08 17:18:52下载
    积分:1
  • key
    通达2008最新的注册机,直接放在webroot运行(Access to the latest 2008 Zhuceji run directly on the webroot)
    2008-04-27 11:19:31下载
    积分:1
  • test1
    生产者消费者问题-经典进程同步问题——生产者消费者问题及其同步方案;(produce&comsumer produce&comsumerproduce&comsumerproduce&comsumer)
    2018-05-03 19:36:23下载
    积分:1
  • myshell
    用纯C语言编写的一个Linux下的Shell,包含tch和bash的基本功能(包含重定向和后台运行),暂时不支持管道。已经在cygwin和Ubantu 7.10下测试通过。 主要包含: makefile 编译生成myshell可执行文件 myshell.c 主函数(涉及程序入口) utility.c 所有功能函数(将近1000行) myshell.h(包含宏定义、结构体声明、库函数的头文件,及utility.c中的所有函数的声明) readme 用户手册(当用户在myshell里输入help <command> 时,输出<command>的使用说明) (With pure C language under Linux in a Shell, contains tch and bash the basic functions (including redirect and running in the background), the moment does not support the pipeline. Has been under cygwin and test Ubantu 7.10. Mainly includes: makefile compiler generated executable file myshell main function myshell.c (relating to procedures for entrance) utility.c all the features of function (nearly 1000 lines) myshell.h (contains macro definition, the structure declaration, the first document library, and all utility.c statement function) readme user' s manual (when users enter help in myshell <command> , The output <command> The use of explanation))
    2009-04-27 14:38:33下载
    积分:1
  • 模拟操作系统的内存调度,硬盘管理,CPU资源分配,进程优先级处理等等(Simulation of memory scheduling, hard disk management, CPU resource allocation, process priority processing and so on)
    2017-10-24 18:30:16下载
    积分:1
  • 696518资源总数
  • 105559会员总数
  • 1今日下载