Ein Miniatur-Assembler, der auf einer Mini-CPU läuft.
Die Mini-CPU-Architektur wurde als Lehrmittel von Professor Daniele Braga am Politecnico di Milano entwickelt und basiert auf der abstrakten Maschine, die im Buch Informatica: arte e mestiere vorgestellt wird.
Dieses Projekt implementiert die relative assemblyähnliche Sprache und einen Emulator, um sie auszuführen.
$ make all
$ ./assembler examples/sum.masm
$ ./runner examples/sum
Alle Anweisungen werden wie folgt aufgerufen:
OPCODE <operand>
außer ADD, DIF, NOP, HALT
die keinen Operanden erfordern.
OPCODES <op> type
0000 0 LOADA addr. copy in A the value from RAM cell <op>
0001 1 LOADB addr. copy in B the value from RAM cell <op>
0010 2 STOREA addr. store in RAM cell <op> the value from A
0011 3 STOREB addr. store in RAM cell <op> the value from B
0100 4 READ addr. read from console, store in RAM cell <op>
0101 5 WRITE addr. write to console from RAM cell <op>
0110 6 ADD - load A + B in A
0111 7 DIF - load A - B in A
1000 -8 LDCA value load <op> in A
1001 -7 LDCB value load <op> in B
1010 -6 JMP addr. run instruction at RAM cell <op> next
1011 -5 JMPZ addr. do the same as jump, if A == 0
1100 -4 NOP - do nothing
1101 -3 HALT - stop execution