ミニ CPU 上で動作する小型アセンブラ。
ミニ CPU アーキテクチャは、書籍『 Informatica: arte e mestiere』で紹介されている抽象マシンに基づいて、ミラノ工科大学のダニエレ ブラガ教授によって教育ツールとして開発されました。
このプロジェクトは、相対アセンブリ風の言語とそれを実行するためのエミュレーターを実装します。
$ make all
$ ./assembler examples/sum.masm
$ ./runner examples/sum
すべての命令は次のように呼び出されます。
OPCODE <operand>
ただし、オペランドを必要としないADD, DIF, NOP, HALT
は除きます。
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