Add design file and update Readme
This commit is contained in:
parent
c7b315160e
commit
dccf3e037c
2 changed files with 18 additions and 2 deletions
|
|
@ -1,6 +1,7 @@
|
|||
# Interpreter
|
||||
### CLI Anwendung geschrieben in C
|
||||
|
||||
Der Interpreter wandelt das geschriebene Assembly in ein Abbild des Speichers für den EIPA Prozessor um. Dieses Speicherimage enthält dann die Instruction in einer für den EIPA Prozessor lesbareren Form.
|
||||
Der Interpreter wandelt das geschriebene Assembly in ein Abbild des Speichers für den EIPA Prozessor um. Dieses Speicherimage enthält dann die Instruction in einer für den EIPA Prozessor lesbareren Form.
|
||||
Der EIPA Interpreter ähnelt einem Assembler.
|
||||
|
||||
Er ist eine CLI Anwendung geschrieben in C
|
||||
Das Design des Erwarteten Assembly codes ist in ``design.txt`` beschrieben
|
||||
|
|
|
|||
15
design.txt
Normal file
15
design.txt
Normal file
|
|
@ -0,0 +1,15 @@
|
|||
Instructions:
|
||||
INP
|
||||
OUT
|
||||
LDA
|
||||
STA
|
||||
INC
|
||||
DEC
|
||||
JPP
|
||||
JPZ
|
||||
JPN
|
||||
JPU
|
||||
EOJ
|
||||
|
||||
Instruction format, [] means optional:
|
||||
instruction [mem_adress];
|
||||
Loading…
Add table
Add a link
Reference in a new issue