Browse Source

NESNameTable now has a .eq() method that will return true if the object given is a NESNameTable containing the same data.

dev
Bryan Miller 5 years ago
parent
commit
bf8dbd5eb9
1 changed files with 5 additions and 0 deletions
  1. +5
    -0
      app/js/models/NESNameTable.js

+ 5
- 0
app/js/models/NESNameTable.js View File

} }




eq(nt){
return (nt instanceof NESNameTable) ? (this.base64 === nt.base64) : false;
}


/** /**
* Generates a small 6502 assembly block string containing the current nametable data. * Generates a small 6502 assembly block string containing the current nametable data.
* @param {string} [ntname="NameTableData"] The label name under which to store the data. * @param {string} [ntname="NameTableData"] The label name under which to store the data.

Loading…
Cancel
Save