- 1、本文档共17页,可阅读全部内容。
- 2、有哪些信誉好的足球投注网站(book118)网站文档一经付费(服务费),不意味着购买了该文档的版权,仅供个人/单位学习、研究之用,不得用于商业用途,未经授权,严禁复制、发行、汇编、翻译或者网络传播等,侵权必究。
- 3、本站所有内容均由合作方或网友上传,本站不对文档的完整性、权威性及其观点立场正确性做任何保证或承诺!文档内容仅供研究参考,付费前请自行鉴别。如您付费,意味着您自己接受本站规则且自行承担风险,本站不退款、不进行额外附加服务;查看《如何避免下载的几个坑》。如果您已付费下载过本站文档,您可以点击 这里二次下载。
- 4、如文档侵犯商业秘密、侵犯著作权、侵犯人身权等,请点击“版权申诉”(推荐),也可以打举报电话:400-050-0827(电话支持时间:9:00-18:30)。
查看更多
MIT JOS Lab1 实验报告
JOS Lab1 实验报告
Exercise 1. Familiarize yourself with the assembly languagematerials
available on the 6.828 reference page. You dont have to read them now,
but youll almost certainly want to refer to some of this material when
readin and writin x86 assembly.
We do recommend readin the section The Syntax inBrennans Guide to
InlineAssembly. Itgivesagood (andquitebrief)descriptionoftheATT
assembly syntax well be usin with the GNU assembler in JOS.
Exercise2. Use GDBs si (StepInstruction)commandto trace intothe ROM
BIOSforafewmore instructions,andtryto guesswhat itmight bedoing.
You might want to lookat Phil Storrs I/OPorts Description, as well as
other materials on the 6.828 referencematerials page. No need to figure
outallthedetails- justthegeneral ideaofwhattheBIOS isdoin first.
Exercise 3. Take a lookat the labtools guide, especially the section
on GDB commands. Even if youre familiar with GDB, this includes some
esoteric GDB commands that are useful for OS work.
Set a breakpoint at address 0x7c00, which iswhere the boot sector will
be loaded.Continue execution until that breakpoint. Trace through the
code in boot/boot.S, usin the source code and the disassembly file
obj/boot/boot.asmtokeeptrackofwhere youare.Also usethex/icommand
inGDB to disassemble sequences of instructions inthe boot loader,and
compare the original boot loadersource code with both the disassembly
inobj/boot/boot.asm and GDB.
Trace intobootmain() inboot/main.c, and then intoreadsect(). Identify
theexactassembly instructionsthatcorrespondtoeachofthe statements
in readsect(). Trace through the rest of readsect() and back out into
bootmain(), and identifythe begin and end of the forloop that readsthe
remainin sectors of the kernel from the disk. Find out what code will
run when the loop isfinished, set a breakpoint there, and continue to
that breakpoint. Then step through the remainder of the boot loader.
Be able to answer the followin questions
文档评论(0)