ProgrammerVisibleState.md (452B)
1 # Programmer Visible State 2 3 CA L3 4 5 **Definition:** Programmer visible state is all state of program execution that is visible to programs. 6 7 This includes the program counter, registers, and memory. 8 9 This is all information visible to the programmer. 10 11 See [ISA](ISA.md) for more related content. 12 13 There is also programmer invisible state which includes cache and pipline registers are example of state in the [MicroArchitecture](MicroArchitecture.md).