수업 때 쓰기위해 교수님께서 만드신 어셈블러...@_@ 레지스터 : P - program counter : 다음 실행 명령 주소를 갖고 있음I - Instruction Register : 현재 실행중인 명령의 내용을 갖고 있음B - Base Register T - Top Register 메모리 :code[] : instructions[] : data PL/0 Machine Instruction 1. LIT : Load ConstantLIT 0, a T = T+1S[T] = a 2. INT : Memory Allocation//memory allocation 위해 top 증가 - a만큼 메모리 증가INT 0, a T = T+a 3. JMP : Unconditional Jump// P의 주소를 a로 변경해서..