-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
1 changed file
with
24 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1,25 @@ | ||
# Assembly-Interpreter | ||
### Version 1.0.0 | ||
This project is an assembly language interpreter in a 64-bit version, | ||
The interpreter is very friendly and suitable for beginners who want to feel assembly language and understand the meaning of registers and the work of the processor. | ||
|
||
# Commands | ||
### Available commands: | ||
- help - print the commands | ||
- inst \ instructions - print all the available instructions | ||
- mem - print the registers values and names | ||
- exit - exit from the Interpreter | ||
|
||
# Instructions | ||
### Available Instructions: | ||
``` | ||
MOV, ADD, SUB, MUL, DIV, INC | ||
DEC, OR, AND, XOR, NOT, NOP | ||
SHL, SHR, ROL, ROR | ||
``` | ||
|
||
# Registers | ||
### Available Registers: | ||
``` | ||
EAX, EBX, ECX, EDX | ||
``` |