IT

    [Pep/8] Instruction 구조 및 Cycle

    Pep/8 Assembler & Simulator Pep/8은 어셈블리 언어를 기계어로 번역하고, 기계어를 프로그래밍하여 실습 할 수 있는 16bit 가상머신이다. 다운로드 : http://computersystemsbook.com/4th-edition/pep8/ CPU, Register NZVC (Status bits) - Instruction 결과의 상태를 나타내는 bit (Negative : 음수, Zero : 0, oVerflow : 오버플로우, Carry : 캐리) Accumulator - 연산 시 사용되는 레지스터 Index Register - 인덱싱 시 사용되는 레지스터 (array, stack 등) Program Counter - 다음에 수행할 Instruction의 주소 값을 저장 Ins..