ComputerArchitecture.md (1088B)
1 # Computer Architecture 2 3 Links to information learned from computer architecture course 4 5 ## Questions I would like to answer 6 7 1. Generally, how does a CPU work and how does it interface with other computer components? 8 2. Why do ARM chips with a reduced instruction set appear to be more efficient? 9 3. What are the steps to create a computer in a video game? 10 11 ## Main Links 12 13 - [Historical Designs](HistoricalDesigns.md) 14 - [Abstraction](Abstraction.md) 15 - [Memory](Memory.md) 16 - [Scheduling](Scheduling.md) 17 - [Algorithm](Algorithm.md) 18 - [ISA](ISA.md) 19 - [Out Of Order Execution](OutOfOrderExecution.md) 20 - [Super Scalar](SuperScalar.md) 21 - [Moores Law](MooresLaw.md) 22 - [Forward Thoughts](ForwardThoughts.md) 23 - [Design Point](DesignPoint.md) 24 - [DRAMRow Hammer](DRAMRowHammer.md) 25 - [Von Neumann Model](VonNeumannModel.md) 26 - [Barrier Synchronization](BarrierSynchronization.md) 27 - [Micro Architecture](MicroArchitecture.md) 28 - [Instruction](Instruction.md) 29 - [Opcode](Opcode.md) 30 - [Bit Steering](BitSteering.md) 31 - [BCD](BCD.md) 32 - [Programmer Visible State](ProgrammerVisibleState.md) 33 - [MUX](MUX.md)