미니 CPU에서 실행되는 소형 어셈블러입니다.
미니 CPU 아키텍처는 Politecnico di Milano의 Daniele Braga 교수가 교육 도구로 개발했으며 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