瀏覽代碼

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 年之前
父節點
當前提交
bf8dbd5eb9
共有 1 個檔案被更改,包括 5 行新增0 行删除
  1. +5
    -0
      app/js/models/NESNameTable.js

+ 5
- 0
app/js/models/NESNameTable.js 查看文件

@@ -235,6 +235,11 @@ export default class NESNameTable extends ISurface{
}


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


/**
* 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.

Loading…
取消
儲存