pathsim.html

来自「MIPS Simulator assembly languge.」· HTML 代码 · 共 48 行

HTML
48
字号
<!--				File: Architecture.html	
----
----			Main page for the CS 231 Architecture Simulator 
----   Author:  Dr. D. Hunkins
----   Date:    24 June 04
---->
<html>
<head>
<script language="Javascript">
   function getBrowserName() 
   {  var browserName = navigator.appName;
      return browserName;
   }

   function returnedDataAccess(value, address, access) {
     DataInput.returnedDataAccess(value, address, access);
   }

   function returnedRegisterAccess(read1, read2, write, value) {
     RegisterInput.returnedRegisterAccess(read1, read2, write, value);
   }

   function returnedInstructionAccess(address) {
     InstructionInput.returnedInstructionAccess(address);
   }
</script>
   
<title></title>
</head>
<frameset rows="58%, *">
  <frameset cols="75%, *">
      <frame name="DataPath" src="DataPath.html" marginheight="1" marginwidth="1" scrolling="no">
      <frameset cols="50%, *">
           <frame name="RegisterInput"    src="RegisterInput.html">
           <frame name="RegisterDisplay"  src="RegisterDisplay.html">
      </frameset>
  </frameset>
  <frameset cols="25%, 25%, 25%, *">
         <frame name="InstructionInput"   src="Instructions.html">
         <frame name="InstructionMemory"  src="InstructionMemory.html">
         <frame name="DataInput"          src="DataInput.html">
         <frameset rows="80%, *">        
           <frame name="DataMemory" src="DataMemory.html">
           <frame name="HelpButton" src="HelpButton.html">
         </frameset>
  </frameset>
</frameset>
</html>

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?