Fantasy 8Bit system (F8), is a fantasy 8bit console and a set of libraries for creating fantasy 8bit consoles.
您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符

101 行
2.5KB

  1. var Memory = require('chip/memory');
  2. class Bank{
  3. constructor(mem){
  4. this.__mem = [mem];
  5. this.__idx = 0;
  6. }
  7. get mem(){return this.__mem[this.__idx];}
  8. get idx(){return this.__idx;}
  9. set idx(i){
  10. if (i >= 0 && i < this.__mem.length)
  11. this.__idx = i;
  12. }
  13. addMemModule(mem){
  14. if (!(mem instanceof Memory))
  15. throw new ValueError("Only Memory instances can be added to MMC Banks.");
  16. if (this.__mem.length >= 4)
  17. throw new RangeError("Bank handling maximum memory modules.");
  18. if (this.__mem.length > 0 && mem.size !== this.__mem[0].size)
  19. throw new RangeError("Memory module does not match size of already connected memory modules on this bank.");
  20. this.__mem.push(mem);
  21. }
  22. }
  23. class MMC{
  24. constructor(){
  25. this.__banks = [];
  26. this.__addr = 0;
  27. this.__bnkidx = 0;
  28. }
  29. get size(){
  30. return this.__banks.reduce((acc, b)=>{
  31. acc += b.mem.size;
  32. }, 0);
  33. }
  34. get banks(){return this.__banks.length;}
  35. get address(){return this.__addr;}
  36. set address(a){
  37. if (a >= 0 && a < this.size){
  38. this.__addr = a;
  39. offset = 0;
  40. for (let b=0; b < this.__banks.length; b++){
  41. if (a >= offset && a < offset + this.__banks[b].mem.size){
  42. this.__bnkidx = b;
  43. this.__banks[b].mem.address = a - offset;
  44. break;
  45. } else {
  46. offset += this.__banks[b].mem.size;
  47. }
  48. }
  49. }
  50. }
  51. get byte(){return (this.__banks.length > 0) ? this.__banks[this.__bnkidx].mem.byte : -1;}
  52. set byte(b){
  53. if (this.__banks.length > 0){
  54. this.__banks[this.__bnkidx].mem.byte = b;
  55. }
  56. }
  57. connectMemory(mem, addroff){
  58. addroff = (typeof(addroff) === 'number' && addroff >= 0) ? addroff : -1;
  59. if (addroff < 0 || addroff === this.size){
  60. this.__banks.push(new Bank(mem));
  61. } else {
  62. offset = 0;
  63. for (let b=0; b < this.__banks.length; b++){
  64. if (addroff === offset){
  65. if (this.__banks[b].mem.size !== mem.size)
  66. throw new RangeError("Memory modules assigned to the same bank must be the same byte size.");
  67. this.__banks[b].addMemModule(mem);
  68. offset = -1;
  69. break;
  70. } else {
  71. offset += this.__banks[b].mem.size;
  72. }
  73. }
  74. if (offset >= 0)
  75. throw new RangeError("Cannot align memory module to bank at address " + addroff);
  76. }
  77. return this;
  78. }
  79. mmSwitchRegister(){
  80. return (function(byte){
  81. // TODO: Check the bits to determin which bank and bank index is being switched on.
  82. }).bind(this);
  83. }
  84. }
  85. module.exports = MMC;