micro.h
来自「eC++编译器源码」· C头文件 代码 · 共 18 行
H
18 行
#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 + =
减小字号Ctrl + -
显示快捷键?