⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 micro.h

📁 eC++编译器源码
💻 H
字号:
#pragma Micro
/*Used to load the control store for an emulator for the microengine
  described in Andrew Tanenabum's Computer Organization textbook
  published by Prentice-Hall.  The Run procedure is used to load
  an assembly language program to execute beginning at memory zero.
*/

void Run(char &nameTable[], char s[]);
/* Load name table of mnemonics for one-address instructions,
   then assemble a list of machine language instructions, then execute.
*/
void StoreControl(unsigned int index, char microInst[], char &nameTable[]);
/* Load a name table for microinstruction field definition,
   then load all the microinstructions to define a virtual machine

   See xmicro.cpp for an example
*/

⌨️ 快捷键说明

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