DEV300 A Tiny CPU and OS in C#.ppt

  1. 1、原创力文档(book118)网站文档一经付费(服务费),不意味着购买了该文档的版权,仅供个人/单位学习、研究之用,不得用于商业用途,未经授权,严禁复制、发行、汇编、翻译或者网络传播等,侵权必究。。
  2. 2、本站所有内容均由合作方或网友上传,本站不对文档的完整性、权威性及其观点立场正确性做任何保证或承诺!文档内容仅供研究参考,付费前请自行鉴别。如您付费,意味着您自己接受本站规则且自行承担风险,本站不退款、不进行额外附加服务;查看《如何避免下载的几个坑》。如果您已付费下载过本站文档,您可以点击 这里二次下载
  3. 3、如文档侵犯商业秘密、侵犯著作权、侵犯人身权等,请点击“版权申诉”(推荐),也可以打举报电话:400-050-0827(电话支持时间:9:00-18:30)。
查看更多
DEV300 A Tiny CPU and OS in C#.ppt

DEV300: A Tiny CPU and OS in C# Scott Hanselman Technology Evangelist/Architect Corillian Corporation scott@ Tiny CPU and OS Design Goals Creation of an Abstract Machine Simulate Running and Scheduling of Processes Provide Paging, Virtual Memory, Memory Protection Each Process scheduled independently Inter-process Communication Tiny CPU and OS Disclaimer Goals Meant to teach C# and exercise libraries Meant to teach basic OS/CPU concepts Meant to simulate OS behaviors NOT GOALS Not meant to get any work done Not meant as a “perfect” simulation CPU and OS The CPU is a 32-bit machine all addresses and registers are 32-bits CPU 10 registers 32-bits wide IP – Instruction Pointer SP – Stack Pointer OS 32 basic OpCodes Each OpCode takes 1 clock cycle Basic Design Object mapping to actual OS/CPU pieces Basic Design Object mapping to actual OS/CPU pieces CPU and OS Executed like this from command-line: C: OS 2048 prog1.txt prog2.txt Many Configuration options configuration appSettings add key=PhysicalMemory value=128 / add key=ProcessMemory value=384 / add key=DumpPhysicalMemory value=true / add key=DumpInstruction value=true / add key=DumpRegisters value=true / add key=MemoryPageSize value=16 / add key=StackSize value=16 / add key=DataSize value=16 / /appSettings /configuration Instruction Set Example Example Idle Loop Demo: Basic Programs Manipulating Registers Moving Memory, using the Stack Small Functions Inter-process Communication Tiny OS Memory “Physical Memory” just array of bytes internal static byte[] physicalMemory; Virtual Memory may be much larger! But each Process has it’s own “view” Virtual Memory hidden in code via [] Operator Overloading Tiny OS Memory Tiny OS Memory Tiny OS Memory with small physical memory and paging Tiny OS Memory memory becomes fragmented Major Elements (1 of 2) Typed Collections Generated by Tool unsafe code Like “inline C” Delegates Object-Oriented Function Pointers Object Serialization Memory Page

文档评论(0)

shengyp + 关注
实名认证
内容提供者

该用户很懒,什么也没介绍

1亿VIP精品文档

相关文档