-
Notifications
You must be signed in to change notification settings - Fork 0
Home
Matthew Joyce edited this page Jan 1, 2016
·
9 revisions
Welcome to the specter wiki!
Learn about:
- The assembling process
- The execution process
- The CLI
- The GUI
- Also see
specter.py --help
The little man computer is a simulation of how a modern computer works. It is a very simple Von Neumann architecture, with the instructions and data stored together. The computer has:
- A way to get user input
- A way to give output
- Memory to store instructions and data
- Ways of processing the data by following the instructions
- When a program is loaded from a text file, the human-readable instructions are converted to machine-readable instructions by assembling them.
- The machine-code is then executed by repeating a fetch-interpret-execute cycle.