gbasm
Version:
A GameBoy Assembler.
14 lines (10 loc) • 410 B
JavaScript
// Compile Time Constants -----------------------------------------------------
// ----------------------------------------------------------------------------
function Constant(file, name, value, index) {
this.file = file;
this.name = name;
this.value = value;
this.index = index;
}
// Exports --------------------------------------------------------------------
module.exports = Constant;