Changes between Version 3 and Version 4 of S01
- Timestamp:
- Jun 21, 2019, 12:13:05 PM (6 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
S01
v3 v4 1 = Programmation en assembleur sur une machine minimale1 = Assembler programmation of a minimalist computer 2 2 {{{ 3 3 #!protected … … 5 5 == Plan 6 6 7 - Architecture de Von Neumann8 - R ôle du processeur9 - R ôle de la mémoire10 - R ôle des contrôleurs d'entrées sortie11 - A rchitecture d'une machine7 - Von Newmann's architecture 8 - Role of processor 9 - Role of memory 10 - Role of in-out controller 11 - Actual computer's architecture 12 12 - Espace d'adressage 13 13 - Architecture externe du processeur … … 15 15 - Type d'instruction 16 16 - Endianness 17 18 == Qu'allez-vous apprendre ? 19 20 * What are the minimal components of a computer ? 21 * What is the memory exactly? 22 * What is the memory address space? 23 * What is a device and how to communicate with ? 24 * How to write a program for the MIPS core? 25 * Assembler code that is the basic language of the MIPS? 26 27 == Architecture 28 29 * What is a MIPS32 core ? 30 * What is a memory bank ? 31 * What is a TTY console ? 32 * What is a program ? 33 }}}