Welcome![Sign In][Sign Up]
Location:
Search - bootsect

Search list

[Windows Develop引导程序的设计以及进程环境的建立

Description: 1、BOOTSECT.BIN 功能:1.44M软盘的引导扇区中的文件 源代码文件:BOOTSECT.ASM 编译方法 nasm bootsect.asm -o bootsect.bin 2、WRBOOT.COM 功能:将BOOTSECT.BIN 写到软盘的引导扇区 源代码文件:WRBOOT.ASM 编译方法 nasm wrboot.asm -o wrboot.com 使用方法:将BOOTSECT.BIN 与WRBOOT.COM 置于同一目录下,软驱中插入软盘,执行WRBOOT.COM 3、OS.PCS 功能:操作系统的任务切换演示 源代码文件:PCS.ASM 编译方法 nasm pcs.asm -o os.pcs 使用方法:将OS.PCS拷贝到引导扇区为BOOTSECT.BIN的软盘上,设定从软驱启动计算机,重新启动计算机,电脑启动成功后可运行OS.PCS文件以显示任务切换。
Platform: | Size: 10515 | Author: 黄小文 | Hits:

[Linux-Unix1_2195

Description: 从dos下装载内核,运行。AA为工具软件,它在当前目录下读取Image文件,去掉前面的bootsect和setup程序,仅剩下内核 main.c和loader.asm为主程序文件。-under loading kernel operation. AA software as a tool, it in the current directory Image read documents, the front page bootsect and setup procedures, leaving only core main.c and loader.asm main program file.
Platform: | Size: 80386 | Author: 刘兴 | Hits:

[OS Developbootsect

Description: 自己以前写的 引导扇区代码。包括: fat12.asm fat16.asm fat32.asm
Platform: | Size: 54453 | Author: 姜勇 | Hits:

[OS Developbootsect

Description: 部分常用系统的引导程序-part of the guidance system used procedures
Platform: | Size: 21296 | Author: 温传 | Hits:

[OS Developbootsect

Description: 部分常用系统的引导程序-part of the guidance system used procedures
Platform: | Size: 21504 | Author: 温传 | Hits:

[Windows Develop引导程序的设计以及进程环境的建立

Description: 1、BOOTSECT.BIN 功能:1.44M软盘的引导扇区中的文件 源代码文件:BOOTSECT.ASM 编译方法 nasm bootsect.asm -o bootsect.bin 2、WRBOOT.COM 功能:将BOOTSECT.BIN 写到软盘的引导扇区 源代码文件:WRBOOT.ASM 编译方法 nasm wrboot.asm -o wrboot.com 使用方法:将BOOTSECT.BIN 与WRBOOT.COM 置于同一目录下,软驱中插入软盘,执行WRBOOT.COM 3、OS.PCS 功能:操作系统的任务切换演示 源代码文件:PCS.ASM 编译方法 nasm pcs.asm -o os.pcs 使用方法:将OS.PCS拷贝到引导扇区为BOOTSECT.BIN的软盘上,设定从软驱启动计算机,重新启动计算机,电脑启动成功后可运行OS.PCS文件以显示任务切换。 -1, BOOTSECT.BIN features: 1.44M floppy disk boot sector of the document source code files: BOOTSECT.ASM compiler methods nasm bootsect.asm-o bootsect.bin2, WRBOOT.COM features: The floppy disk BOOTSECT.BIN wrote the guide Sector source code files: WRBOOT.ASM compiler methods nasm wrboot.asm-o wrboot.com use Methods: BOOTSECT.BIN with WRBOOT.COM under the same directory, insert the floppy diskette, the implementation of WRBOOT.COM3, OS.PCS functions: task switching operating system demo source code files: PCS.ASM compiler methods nasm pcs.asm-o os.pcs use Methods: OS.PCS copied to the boot sector of floppy disks for BOOTSECT.BIN, the settings from the floppy drive restart your computer, restart the computer, the computer starts to run after the success of a document to show OS.PCS task switching.
Platform: | Size: 10240 | Author: 黄小文 | Hits:

[Linux-Unix1_2195

Description: 从dos下装载内核,运行。AA为工具软件,它在当前目录下读取Image文件,去掉前面的bootsect和setup程序,仅剩下内核 main.c和loader.asm为主程序文件。-under loading kernel operation. AA software as a tool, it in the current directory Image read documents, the front page bootsect and setup procedures, leaving only core main.c and loader.asm main program file.
Platform: | Size: 79872 | Author: 刘兴 | Hits:

[OS Developbootsect

Description: 自己以前写的 引导扇区代码。包括: fat12.asm fat16.asm fat32.asm-Written by their own previous boot sector code. Including: fat12.asmfat16.asmfat32.asm
Platform: | Size: 54272 | Author: 姜勇 | Hits:

[assembly languagedema

Description: bootsect 在屏幕上打印p 仿于渊的那本自己动手写操作系统-bootsect print red p on the screen follow the book written by yuan yu
Platform: | Size: 1024 | Author: choumao | Hits:

[Linux-Unixbootsect

Description: Linux主引导记录块中的主引导程序Bootsect.s-Boot program of Linux in MBR
Platform: | Size: 5120 | Author: bolzano | Hits:

[assembly languagebootsect

Description: 引导扇区源代码注释,用于描述系统的引导过程-Boot sector source code annotations, used to describe the system boot process
Platform: | Size: 8192 | Author: shechangxin | Hits:

[Linux-Unixos

Description: 操作系统的boot代码有很多,并且大部分是相似的。本实验仿照Linux-0.11/boot目录下的bootsect.s和setup.s,以剪裁它们为主线-Of the operating system boot code that there are many, and most are similar. In this study, modeled Linux-0.11/boot directory bootsect.s and setup.s, in order to tailor them to the main line
Platform: | Size: 7168 | Author: 金淼 | Hits:

[OS Developvs

Description: My Mini 操作系统 源码.目前已经实现的功能: 阶段1: 1 BootSect 2 Kernel Loader (已经进入保护模式,并且将必要的参数传递给Kernel) 3 Kernel (开启页式存储,物理内存的简单管理,为中断提供了一套基本的接口,利用Bget建立了一个简单的堆) 阶段2: 1 优化了一部分代码,包括内核堆,内核栈的重新布置 2 初始化了一个TSS,用以处理特权级变化 3 将GDT从以前的KernelLoader空间到自己的空间 4 引入进程的概念(用双向链表来管理) 5 实现了第一个Ring3进程(但是此刻IF位置0,暂不响应时钟中断) 阶段3: 1 现在系统中有2个进程 2 开启时钟中断,对进程进行调度 3 现在每个进程有两个栈(Ring3栈,Ring0内核栈),中断处理程序也有了自己的内核栈,这样子,无论你的ISR多么复杂都不会乱了。 阶段4: 1 优化了中断处理过程,实现了中断的重入 2 实现了进程优先级的概念 3 开启键盘中断,进程中可以可以读取键盘输入(代码模仿,还有BUG,以后修正) 未来计划(如果谁有兴趣一起做的话,welcome !): 1 继续完善键盘输入功能 2 将每个任务(进程)的输入,输出隔离开来-My Mini operating system source code Already implemented features: Phase 1: 1 BootSect 2 Kernel Loader (has entered the protected mode, and the necessary parameters to the Kernel) 3 Kernel (open page storage, a simple physical memory management, interrupt provides a basic set of interfaces, using Bget created a simple heap) Phase 2: An optimized part of the code, including kernel stack, kernel stack of re-arrangement 2 Initializes a TSS, to deal with privilege level change 3 to GDT from the previous KernelLoader space to their own space 4 introduces the concept of the process (using two-way linked list to manage) 5 to achieve the first Ring3 process (but at the moment IF position 0, they will not respond to the clock interrupt) Stage 3: 1 Now the system has two processes 2 Turn the clock interrupt, the process scheduling 3, each process now has two stacks (Ring3 stack, Ring0 kernel stack), the interrupt handler also has its own kernel stack, this way, no ma
Platform: | Size: 67584 | Author: 程光 | Hits:

[Linux-Unix-Operating-system-to-boot.tar

Description: linux操作系统的引导,包含bootsect.s,setup.s,build.c文件-linux operating system to boot, including bootsect.s, setup.s, build.c file
Platform: | Size: 7168 | Author: 张鹏 | Hits:

[Other实验楼-操作系统的引导-代码

Description: 对应实验楼里的操作系统实验二,修改bootsect.s和setup.s,实现启动输出语句的改写和打印内存信息(Corresponding to the experimental building operating system experiment two, modify the bootsect.s and setup.s, to achieve the start and output statements rewritten and print memory information)
Platform: | Size: 599040 | Author: davidluan | Hits:

CodeBus www.codebus.net