Этот материал находится в платной подписке. Оформи премиум подписку и смотри или слушай Build a Chip-8 Emulator in JavaScript that runs on a browser, а также все другие курсы, прямо сейчас!
Премиум
  1. Урок 1. 00:02:54
    Understand what Chip-8 is and the challenges we will face
  2. Урок 2. 00:01:35
    Creating our Chip-8 virtual microprocessor
  3. Урок 3. 00:04:26
    Creating our Display
  4. Урок 4. 00:09:13
    Setting up Webpack so we can use modern JavScript on the Browser
  5. Урок 5. 00:01:37
    Creating a webserver to serve our Chip-8 emulator
  6. Урок 6. 00:03:56
    Connecting the display to the HTML
  7. Урок 7. 00:02:06
    Creating a multiplier to make our Display larger
  8. Урок 8. 00:03:39
    Creating our screen and our screen buffer
  9. Урок 9. 00:07:33
    Drawing our Frame Buffer on the screen
  10. Урок 10. 00:11:30
    Creating our memory
  11. Урок 11. 00:12:26
    Creating the Registers
  12. Урок 12. 00:05:02
    Adding and removing values from Stack using Push and Pop
  13. Урок 13. 00:04:52
    Checking for Stack Overflow and Stack Underflow errors
  14. Урок 14. 00:03:30
    Creating our Chip-8 Keyboard
  15. Урок 15. 00:04:05
    Mapping the Keyboard
  16. Урок 16. 00:04:23
    Using the mapping in our Virtual Keyboard
  17. Урок 17. 00:04:00
    Creating all the keyboard functions
  18. Урок 18. 00:08:45
    Detecting and storing key presses
  19. Урок 19. 00:05:34
    Creating the Chip-8 charset
  20. Урок 20. 00:05:02
    Loading character set to Chip-8 memory
  21. Урок 21. 00:14:11
    Drawing a character on the display
  22. Урок 22. 00:04:50
    Understanding the Pixel Position and writing on the screen
  23. Урок 23. 00:05:00
    Implement the Delay Timer for Chip-8
  24. Урок 24. 00:10:41
    Creating our Chip-8 Sound Card
  25. Урок 25. 00:02:45
    Fixing our Sound Card and making it beep
  26. Урок 26. 00:02:58
    Implement the sound on the main loop
  27. Урок 27. 00:04:58
    Running our Binary code manually
  28. Урок 28. 00:08:45
    Creating our Disassembler and our first Chip-8 Instruction CLR
  29. Урок 29. 00:02:48
    Creating a new simple Chip-8 instruction RET
  30. Урок 30. 00:05:19
    Implement Chip-8 Jump (JP) and creating arguments
  31. Урок 31. 00:03:43
    Returning the argument nnn from Jump (JP)
  32. Урок 32. 00:01:32
    Implementing the Chip-8 Call instruction
  33. Урок 33. 00:05:42
    Adding the Skip VX NN on the instruction set and shifting bits
  34. Урок 34. 00:04:26
    Refactoring our code to make easier to understand and continue
  35. Урок 35. 00:01:18
    Adding another Chip-8 instruction Skip next instruction - SNE VX KK
  36. Урок 36. 00:01:30
    Adding Chip-8 instruction LD VX KK
  37. Урок 37. 00:01:13
    Adding Chip-8 Instruction Add VX KK
  38. Урок 38. 00:03:33
    Adding Chip-8 Instruction Set VX VY
  39. Урок 39. 00:05:57
    Adding the Chip-8 instructions OR, AND, XOR, ADD, SUB, SHR, SUBN, SHL
  40. Урок 40. 00:02:22
    Testing the Chip-8 instructions OR, AND, XOR, ADD, SUB, SHR, SUBN, SHL
  41. Урок 41. 00:05:48
    Adding the Chip-8 instructions SNE, SET JUMP and Random
  42. Урок 42. 00:02:56
    Adding the Chip-8 instructions Draw DRW and introducing the nibble
  43. Урок 43. 00:03:14
    Adding the Chip-8 instructions Skip if key pressed (SKP)
  44. Урок 44. 00:06:18
    Adding the Chip-8 instructions Set Delay Timer, Set Sound Timer, and more
  45. Урок 45. 00:02:32
    Testing the Chip-8 instructions Set Delay Timer, Set Sound Timer and more
  46. Урок 46. 00:07:24
    046 - Loading our first ROM into Chip-8 memory
  47. Урок 47. 00:01:26
    Understand the opcode structure
  48. Урок 48. 00:05:13
    Getting the Opcode from the Chip-8 Memory
  49. Урок 49. 00:05:39
    Disassembling our opcode to get the Chip-8 Instruction
  50. Урок 50. 00:03:48
    Implementing Chip-8 instruction CLS
  51. Урок 51. 00:04:46
    Implementing Chip-8 instruction RET
  52. Урок 52. 00:02:41
    Implementing Chip-8 instruction Jump to Address
  53. Урок 53. 00:06:35
    Implementing Chip-8 instruction Call to Address (CALL)
  54. Урок 54. 00:04:50
    Implementing Chip-8 instruction Skip if equals (SE VX KK)
  55. Урок 55. 00:01:39
    Implementing Chip-8 instruction Skip if different (SNE VX KK)
  56. Урок 56. 00:02:22
    Implementing Chip-8 instruction Skip if registers are equal (SE VX VY)
  57. Урок 57. 00:02:38
    Implementing Chip-8 instruction Set registers (LD VX NN)
  58. Урок 58. 00:02:49
    Implementing Chip-8 instruction Add (ADD VX KK)
  59. Урок 59. 00:02:43
    Implementing Chip-8 instruction Load registers (LD VX VY)
  60. Урок 60. 00:04:15
    Implementing Chip-8 instruction OR (OR VX VY)
  61. Урок 61. 00:02:00
    Implementing Chip-8 instruction AND (AND VX VY)
  62. Урок 62. 00:02:43
    Implementing Chip-8 instruction Exclusive OR XOR (XOR VX VY)
  63. Урок 63. 00:06:57
    Implementing Chip-8 ADD with Carry (ADD VX VY with C)
  64. Урок 64. 00:03:57
    Implementing Chip-8 SUB with not Borrow (SUB VX VY)
  65. Урок 65. 00:06:55
    Implementing Chip-8 Shift bits to Right (SHR VX)
  66. Урок 66. 00:05:23
    Implementing Chip-8 SUBN with not Borrow (SUBN VX VY)
  67. Урок 67. 00:06:02
    Implementing Chip-8 Shift bits to Left (SHL VX)
  68. Урок 68. 00:02:44
    Implementing Chip-8 Skip (SNE VX VY)
  69. Урок 69. 00:03:01
    Implementing Chip-8 Load I (LD NNN)
  70. Урок 70. 00:02:49
    Implementing Chip-8 Jump (JP V0 NNN)
  71. Урок 71. 00:06:44
    Implementing Chip-8 Ramdon (RND VX NN)
  72. Урок 72. 00:11:23
    Implementing Chip-8 Drawing (DRW VX VY nibble)
  73. Урок 73. 00:05:50
    Debugging our display problem
  74. Урок 74. 00:03:23
    74 Wrapping around the display Horizontal and Vertical (just like Pac-Man)
  75. Урок 75. 00:03:46
    Creating and testing a collision on the Display
  76. Урок 76. 00:06:32
    Implementing Chip-8 Skip is Key Pressed (SKP VX)
  77. Урок 77. 00:02:07
    Implementing Chip-8 Skip is Key is not Pressed (SKNP VX)
  78. Урок 78. 00:03:09
    Implementing Chip-8 Set from Delay Timer (LD VX DT)
  79. Урок 79. 00:07:03
    Implementing Chip-8 Wait for a Key(LD VX DT0)
  80. Урок 80. 00:07:03
    Implementing Chip-8 Wait for a Key(LD VX K)
  81. Урок 81. 00:02:01
    Implementing Chip-8 Set Delay Timer(LD DT VX)
  82. Урок 82. 00:01:55
    Implementing Chip-8 Set Sound Timer(LD ST VX)
  83. Урок 83. 00:03:36
    Implementing Chip-8 Add I(ADD I VX)
  84. Урок 84. 00:05:03
    Implementing Chip-8 Set I to a Sprite (LD I VX)
  85. Урок 85. 00:07:50
    Implementing Chip-8 Store BCD (Binary Coded Decimal) (LD B VX)
  86. Урок 86. 00:04:41
    Implementing Chip-8 Store V0-VX (LD B VX)
  87. Урок 87. 00:04:11
    Implementing Chip-8 Read V0-VX (LD VX I)
  88. Урок 88. 00:01:13
    1