Fantasy 8Bit system (F8), is a fantasy 8bit console and a set of libraries for creating fantasy 8bit consoles.
Vous ne pouvez pas sélectionner plus de 25 sujets Les noms de sujets doivent commencer par une lettre ou un nombre, peuvent contenir des tirets ('-') et peuvent comporter jusqu'à 35 caractères.

190 lines
5.0KB

  1. const expect = require('chai').expect;
  2. const MOS6502 = require('../src/MOS6502');
  3. const Mem = require('../src/memory');
  4. describe("Testing MOS6502 CPU...", function(){
  5. var asm = new MOS6502.Assembler();
  6. var cpu = new MOS6502.CPU();
  7. var tick = cpu.clk();
  8. cpu.memory = new Mem.Memory.RAM(256);
  9. cpu.memory.load(0xFFFC, [0x00, 0x00]);
  10. it("Resetting (IRQ Disabled flag must be on", function(){
  11. cpu.reset = true;
  12. tick(); // One tick to handle resets.
  13. expect(cpu.I).to.equal(1);
  14. expect(cpu.PC).to.equal(0); // Test program counter set to the vector stored at 0xFFFC - 0xFFFD
  15. });
  16. describe("Testing flag set/clear calls...", function(){
  17. it("CLC / SEC", function(){
  18. cpu.memory.clearPage(0);
  19. cpu.memory.load(0, [0x18, 0x38]);
  20. cpu.reset = true;
  21. tick(); // reset.
  22. tick(); tick(); // Two ticks to process opcode.
  23. expect(cpu.C).to.equal(0);
  24. tick(); tick();
  25. expect(cpu.C).to.equal(1);
  26. });
  27. it("CLI / SEI", function(){
  28. cpu.memory.clearPage(0);
  29. cpu.memory.load(0, [0x58, 0x78]);
  30. cpu.reset = true;
  31. tick();
  32. tick(); tick();
  33. expect(cpu.I).to.equal(0);
  34. tick(); tick();
  35. expect(cpu.I).to.equal(1);
  36. });
  37. it("CLD / SED", function(){
  38. cpu.memory.clearPage(0);
  39. cpu.memory.load(0, [0xD8, 0xF8]);
  40. cpu.reset = true;
  41. tick();
  42. tick(); tick();
  43. expect(cpu.D).to.equal(0);
  44. tick(); tick();
  45. expect(cpu.D).to.equal(1);
  46. });
  47. it("CLV", function(){
  48. cpu.memory.clearPage(0);
  49. cpu.memory.load(0, [0xB8]);
  50. cpu.reset = true;
  51. tick();
  52. tick(); tick();
  53. expect(cpu.V).to.equal(0);
  54. });
  55. });
  56. describe("Testing LDA...", function(){
  57. it("LDA Immediate", function(){
  58. let prg = "LDA #$01\n";
  59. prg += "LDA #$BB";
  60. asm.reset().compile(prg);
  61. cpu.memory.clearPage(0);
  62. cpu.memory.load(0, asm.result());
  63. cpu.reset = true;
  64. tick();
  65. tick();
  66. tick();
  67. expect(cpu.A).to.equal(0x01);
  68. tick();
  69. expect(cpu.A).to.equal(0x01);
  70. tick();
  71. expect(cpu.A).to.equal(0xBB);
  72. });
  73. it("LDA Zero Page");
  74. it("LDA Zero Page, X");
  75. it("LDA Absolute");
  76. it("LDA Absolute, X");
  77. it("LDA Absolute, Y");
  78. it("LDA Indirect, X");
  79. it("LDA Indirect, Y");
  80. });
  81. describe("Testing ADC...", function(){
  82. it("ADC Immediate", function(){
  83. let prg = "CLC\n";
  84. prg += "CLV\n";
  85. prg += "CLD\n";
  86. prg += "CLI\n";
  87. prg += "LDA #$00\n";
  88. prg += "ADC #$01\n";
  89. prg += "ADC #$01\n";
  90. asm.reset().compile(prg);
  91. cpu.memory.clearPage(0);
  92. cpu.memory.load(0, asm.result());
  93. cpu.reset = true;
  94. tick();
  95. // Getting through the 4 clear flag calls. Each should take 2 ticks.
  96. tick(); tick(); tick(); tick(); tick(); tick(); tick(); tick();
  97. // Next two ticks for the LDA call
  98. tick(); tick();
  99. // Now processing the adds.
  100. expect(cpu.A).to.equal(0);
  101. tick();
  102. expect(cpu.A).to.equal(0);
  103. tick();
  104. expect(cpu.A).to.equal(1);
  105. tick();
  106. expect(cpu.A).to.equal(1);
  107. tick();
  108. expect(cpu.A).to.equal(2);
  109. });
  110. it("ADC Zero Page");
  111. it("ADC Zero Page, X");
  112. it("ADC Absolute");
  113. it("ADC Absolute, X");
  114. it("ADC Absolute, Y");
  115. it("ADC Indirect, X");
  116. it("ADC Indirect, Y");
  117. it ("ADC Test Zero flag"/*, function(){
  118. cpu.memory.clearPage(0);
  119. cpu.memory.load(0, [0x18, 0xB8, 0xD8, 0x58, 0x69, 0xFF, 0x69, 0x01]);
  120. // Getting through the 4 clear flag calls. Each should take 2 ticks.
  121. tick(); tick(); tick(); tick(); tick(); tick(); tick(); tick();
  122. // Now processing the adds.
  123. expect(cpu.A).to.equal(0);
  124. tick();
  125. expect(cpu.A).to.equal(0);
  126. tick();
  127. expect(cpu.A).to.equal(1);
  128. tick();
  129. expect(cpu.A).to.equal(1);
  130. tick();
  131. expect(cpu.A).to.equal(2);
  132. }*/);
  133. });
  134. describe("Testing SBC...", function(){
  135. it("SBC Immediate", function(){
  136. let prg = "SEC\n";
  137. prg += "CLV\n";
  138. prg += "CLD\n";
  139. prg += "CLI\n";
  140. prg += "LDA #$00\n";
  141. prg += "SBC #$01\n";
  142. prg += "SEC\n";
  143. prg += "SBC #$01";
  144. asm.reset().compile(prg);
  145. cpu.memory.clearPage(0);
  146. cpu.memory.load(0, asm.result());
  147. cpu.reset = true;
  148. tick();
  149. // Getting through the 1 set and 3 clear flag calls. Each should take 2 ticks.
  150. tick(); tick(); tick(); tick(); tick(); tick(); tick(); tick();
  151. // Next two ticks for the LDA call
  152. tick(); tick();
  153. // Now processing the subtractions.
  154. expect(cpu.A).to.equal(0);
  155. tick();
  156. expect(cpu.A).to.equal(0);
  157. tick();
  158. expect(cpu.A).to.equal(0xFF);
  159. tick(); tick(); // Get through second SEC call.
  160. tick();
  161. expect(cpu.A).to.equal(0xFF);
  162. tick();
  163. expect(cpu.A).to.equal(0xFE);
  164. });
  165. it("SBC Zero Page");
  166. it("SBC Zero Page, X");
  167. it("SBC Absolute");
  168. it("SBC Absolute, X");
  169. it("SBC Absolute, Y");
  170. it("SBC Indirect, X");
  171. it("SBC Indirect, Y");
  172. });
  173. });