matt_mods

Unit 2 revison notes

Jan 22nd, 2018
83
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.70 KB | None | 0 0
  1. CPU architectures:
  2. von numen
  3. Harvard
  4.  
  5. Memory configurations:
  6. UMA
  7. NUMA(edited)
  8.  
  9. registers:
  10. accumulator in the ALU
  11. CIR writes to the MAR
  12. MAR goes along the system Bus, to RAM
  13. Then gets called, so is taken out of RAM down the system bus
  14. then gets executed and the register is cleared(edited)
  15. interrupts are used when making calls to the CPU and halts execution(edited)
  16. simplex - data can only be transferred one way
  17. half duplex -data can be shared between both machines but only one way at a time
  18. full duplex - data ca be sent between 2 machines both can send and revive at the same time
  19. point to point - direct communication between 2 systems
  20. multi-drop - communication from one machine to many others
  21.  
  22. compression:
  23. lossy - is used on files which can have some of the details cut off, such as MP3's
  24. lossless - has none of the data cut, this is used on files such as documents
  25.  
  26.  
  27. error detection:
  28. parity biits
  29. Checksums
  30. CRC checks
  31. repition
  32.  
  33. error correction:
  34. ARQ (automatic repeat request)
  35. FEC (Froward error correction)
  36.  
  37.  
  38. boolen logic:
  39. AND gates: a | b | AB
  40. 0 | 1 | 0
  41. 1 | 0 | 0
  42. 0 | 0 | 0
  43. 1 | 1 | 1
  44.  
  45.  
  46. OR gates: A | b | AB
  47. 1 | 0 | 1
  48. 0 | 1 | 1
  49. 1 | 1 | 1
  50.  
  51.  
  52. NOT gates: A | B
  53. 1 | 0
  54. 0 | 1
  55.  
  56.  
  57. NAND gates: A | B | AB
  58. 0 | 0 | 1
  59. 1 | 0 | 1
  60. 0 | 1 | 1
  61. 1 | 1 | 0
  62.  
  63. NOR: A | B | AB
  64. 1 | 1 | 0
  65. 1 | 0 | 0
  66. 0 | 1 | 0
  67. 0 | 0 | 1
  68.  
  69. XOR: A | B | AB
  70. 0 | 0 | 0
  71. 1 | 0 | 1
  72. 0 | 1 | 1
  73. 1 | 1 | 0
Add Comment
Please, Sign In to add comment