This chapter introduces the fundamental concepts for programming the PDP-8/E system. It covers the organization of core memory, memory addressing using octal notation and page structures, and the usage of specific instructions. The text details:
- Memory Addressing: Explains how the 4,096 memory locations are organized into 32 pages and how the programmer can access them using direct or indirect addressing.
- Programming Operations: Describes key operations such as Storing and Loading (using the DCA instruction), Program Control (using JMP and JMS instructions), and how to perform arithmetic using two's complement notation.
- Examples: Provides practical code examples for direct and indirect addressing, subroutine implementation, and program flow control.