Added support for virtual read/write breakpoints; physical read/write breakpoints are still used if the specified address is physical (preceded by %) or is outside the virtual 16-bit address range
This commit is contained in:
parent
66ffe17659
commit
cb61219e22
5 changed files with 817 additions and 569 deletions
|
|
@ -189,15 +189,25 @@ CPUPDP11.prototype.initBus = function(cmp, bus, cpu, dbg)
|
|||
this.bus = bus;
|
||||
this.dbg = dbg;
|
||||
this.panel = cmp.panel;
|
||||
|
||||
for (var i = 0; i < CPUPDP11.BUTTONS.length; i++) {
|
||||
var control = this.bindings[CPUPDP11.BUTTONS[i]];
|
||||
if (control) this.cmp.setBinding(null, CPUPDP11.BUTTONS[i], control);
|
||||
}
|
||||
|
||||
this.init();
|
||||
this.setReady();
|
||||
};
|
||||
|
||||
/**
|
||||
* init()
|
||||
*
|
||||
* Stub for initialization call (overridden by the CPUStatePDP11 component).
|
||||
*
|
||||
* @this {CPUPDP11}
|
||||
*/
|
||||
CPUPDP11.prototype.init = function()
|
||||
{
|
||||
};
|
||||
|
||||
/**
|
||||
* finish()
|
||||
*
|
||||
|
|
|
|||
|
|
@ -159,11 +159,30 @@ CPUStatePDP11.prototype.initProcessor = function()
|
|||
this.aIRQs = []; // list of all IRQs, active or not (to be used for auto-configuration)
|
||||
|
||||
this.flags.complete = false;
|
||||
|
||||
this.nReadBreaks = this.nWriteBreaks = 0;
|
||||
};
|
||||
|
||||
/**
|
||||
* init()
|
||||
*
|
||||
* Called once the Bus has been initialized.
|
||||
*
|
||||
* @this {CPUStatePDP11}
|
||||
*/
|
||||
CPUStatePDP11.prototype.init = function()
|
||||
{
|
||||
this.getByteDirect = this.bus.getByte.bind(this.bus);
|
||||
this.getWordDirect = this.bus.getWord.bind(this.bus);
|
||||
this.setByteDirect = this.bus.setByte.bind(this.bus);
|
||||
this.setWordDirect = this.bus.setWord.bind(this.bus);
|
||||
};
|
||||
|
||||
/**
|
||||
* finish()
|
||||
*
|
||||
* Called before the CPU is powered up.
|
||||
*
|
||||
* TODO: This function simply ensures that we don't leave any IRQs installed with unresolved floating
|
||||
* (negative) vectors; however, properly assigning vectors according to device type (ie, auto-configuration)
|
||||
* is an exercise left for another day.
|
||||
|
|
@ -329,26 +348,35 @@ CPUStatePDP11.prototype.getMMUState = function()
|
|||
* Define handlers and DSPACE setting appropriate for the current MMU mode, in order to eliminate unnecessary calls
|
||||
* to mapVirtualToPhysical().
|
||||
*
|
||||
* TODO: We could further optimize readWord(), splitting it into readWordFromDSpace() and readWordFromISpace(),
|
||||
* eliminating the need to OR the addrDSpace bit when we know that bit is zero, but that's a pretty tiny optimization.
|
||||
*
|
||||
* @this {CPUStatePDP11}
|
||||
*/
|
||||
CPUStatePDP11.prototype.setMemoryAccess = function()
|
||||
{
|
||||
this.getByte = this.getByteDirect;
|
||||
this.getWord = this.getWordDirect;
|
||||
this.setByte = this.setByteDirect;
|
||||
this.setWord = this.setWordDirect;
|
||||
if (this.nReadBreaks) {
|
||||
this.getByte = this.getByteChecked;
|
||||
this.getWord = this.getWordChecked;
|
||||
}
|
||||
if (this.nWriteBreaks) {
|
||||
this.setByte = this.setByteChecked;
|
||||
this.setWord = this.setWordChecked;
|
||||
}
|
||||
if (this.mmuEnable) {
|
||||
this.addrDSpace = PDP11.ACCESS.DSPACE;
|
||||
this.addrIOPage = (this.regMMR3 & PDP11.MMR3.MMU_22BIT)? BusPDP11.IOPAGE_22BIT : BusPDP11.IOPAGE_18BIT;
|
||||
this.getAddr = this.getVirtualAddrByMode;
|
||||
this.readWord = this.readWordFromVirtual;
|
||||
this.writeWord = this.writeWordToVirtual;
|
||||
this.readWord = this.nReadBreaks? this.readWordFromVirtualChecked : this.readWordFromVirtual;
|
||||
this.writeWord = this.nWriteBreaks? this.writeWordToVirtualChecked : this.writeWordToVirtual;
|
||||
this.bus.setIOPageRange((this.regMMR3 & PDP11.MMR3.MMU_22BIT)? 22 : 18);
|
||||
} else {
|
||||
this.addrDSpace = 0;
|
||||
this.addrIOPage = BusPDP11.IOPAGE_16BIT;
|
||||
this.getAddr = this.getPhysicalAddrByMode;
|
||||
this.readWord = this.readWordFromPhysical;
|
||||
this.writeWord = this.writeWordToPhysical;
|
||||
this.readWord = this.nReadBreaks? this.readWordFromPhysicalChecked : this.readWordFromPhysical;
|
||||
this.writeWord = this.nWriteBreaks? this.writeWordToPhysicalChecked : this.writeWordToPhysical;
|
||||
this.bus.setIOPageRange(16);
|
||||
}
|
||||
};
|
||||
|
|
@ -2073,6 +2101,66 @@ CPUStatePDP11.prototype.checkStackLimit1145 = function(access, step, addr)
|
|||
}
|
||||
};
|
||||
|
||||
/**
|
||||
* getByteChecked(addr)
|
||||
*
|
||||
* @this {CPUStatePDP11}
|
||||
* @param {number} addr
|
||||
* @return {number}
|
||||
*/
|
||||
CPUStatePDP11.prototype.getByteChecked = function(addr)
|
||||
{
|
||||
if (DEBUGGER && this.dbg) {
|
||||
this.dbg.checkMemoryRead(addr, 1);
|
||||
}
|
||||
return this.getByteDirect(addr);
|
||||
};
|
||||
|
||||
/**
|
||||
* getWordChecked(addr)
|
||||
*
|
||||
* @this {CPUStatePDP11}
|
||||
* @param {number} addr
|
||||
* @return {number}
|
||||
*/
|
||||
CPUStatePDP11.prototype.getWordChecked = function(addr)
|
||||
{
|
||||
if (DEBUGGER && this.dbg) {
|
||||
this.dbg.checkMemoryRead(addr, 2);
|
||||
}
|
||||
return this.getWordDirect(addr);
|
||||
};
|
||||
|
||||
/**
|
||||
* setByteChecked(addr, data)
|
||||
*
|
||||
* @this {CPUStatePDP11}
|
||||
* @param {number} addr
|
||||
* @param {number} data
|
||||
*/
|
||||
CPUStatePDP11.prototype.setByteChecked = function(addr, data)
|
||||
{
|
||||
if (DEBUGGER && this.dbg) {
|
||||
this.dbg.checkMemoryWrite(addr, 1);
|
||||
}
|
||||
this.setByteDirect(addr, data);
|
||||
};
|
||||
|
||||
/**
|
||||
* setWordChecked(addr, data)
|
||||
*
|
||||
* @this {CPUStatePDP11}
|
||||
* @param {number} addr
|
||||
* @param {number} data
|
||||
*/
|
||||
CPUStatePDP11.prototype.setWordChecked = function(addr, data)
|
||||
{
|
||||
if (DEBUGGER && this.dbg) {
|
||||
this.dbg.checkMemoryWrite(addr, 2);
|
||||
}
|
||||
this.setWordDirect(addr, data);
|
||||
};
|
||||
|
||||
/**
|
||||
* getByteSafe(addr)
|
||||
*
|
||||
|
|
@ -2102,7 +2190,7 @@ CPUStatePDP11.prototype.getByteSafe = function(addr)
|
|||
CPUStatePDP11.prototype.getWordSafe = function(addr)
|
||||
{
|
||||
this.nDisableTraps++;
|
||||
var w = this.readWord(addr);
|
||||
var w = this.bus.getWord(this.mapVirtualToPhysical(addr, PDP11.ACCESS.READ_WORD));
|
||||
this.nDisableTraps--;
|
||||
return w;
|
||||
};
|
||||
|
|
@ -2135,10 +2223,42 @@ CPUStatePDP11.prototype.setByteSafe = function(addr, data)
|
|||
CPUStatePDP11.prototype.setWordSafe = function(addr, data)
|
||||
{
|
||||
this.nDisableTraps++;
|
||||
this.writeWord(addr, data);
|
||||
this.bus.setWord(this.mapVirtualToPhysical(addr, PDP11.ACCESS.WRITE_WORD), data);
|
||||
this.nDisableTraps--;
|
||||
};
|
||||
|
||||
/**
|
||||
* addMemBreak(addr, fWrite)
|
||||
*
|
||||
* @this {CPUStatePDP11}
|
||||
* @param {number} addr
|
||||
* @param {boolean} fWrite is true for a memory write breakpoint, false for a memory read breakpoint
|
||||
*/
|
||||
CPUStatePDP11.prototype.addMemBreak = function(addr, fWrite)
|
||||
{
|
||||
if (DEBUGGER) {
|
||||
var nBreaks = fWrite? this.nWriteBreaks++ : this.nReadBreaks++;
|
||||
this.assert(nBreaks >= 0);
|
||||
if (!nBreaks) this.setMemoryAccess();
|
||||
}
|
||||
};
|
||||
|
||||
/**
|
||||
* removeMemBreak(addr, fWrite)
|
||||
*
|
||||
* @this {CPUStatePDP11}
|
||||
* @param {number} addr
|
||||
* @param {boolean} fWrite is true for a memory write breakpoint, false for a memory read breakpoint
|
||||
*/
|
||||
CPUStatePDP11.prototype.removeMemBreak = function(addr, fWrite)
|
||||
{
|
||||
if (DEBUGGER) {
|
||||
var nBreaks = fWrite? --this.nWriteBreaks : --this.nReadBreaks;
|
||||
this.assert(nBreaks >= 0);
|
||||
if (!nBreaks) this.setMemoryAccess();
|
||||
}
|
||||
};
|
||||
|
||||
/**
|
||||
* getPhysicalAddrByMode(mode, reg, access)
|
||||
*
|
||||
|
|
@ -2152,9 +2272,7 @@ CPUStatePDP11.prototype.setWordSafe = function(addr, data)
|
|||
*/
|
||||
CPUStatePDP11.prototype.getPhysicalAddrByMode = function(mode, reg, access)
|
||||
{
|
||||
var addr = this.getAddrByMode(mode, reg, access);
|
||||
if (addr >= BusPDP11.UNIBUS_22BIT) addr = this.mapUnibus(addr);
|
||||
return addr;
|
||||
return this.getAddrByMode(mode, reg, access);
|
||||
};
|
||||
|
||||
/**
|
||||
|
|
@ -2184,10 +2302,26 @@ CPUStatePDP11.prototype.getVirtualAddrByMode = function(mode, reg, access)
|
|||
*/
|
||||
CPUStatePDP11.prototype.readWordFromPhysical = function(addr)
|
||||
{
|
||||
if (addr >= BusPDP11.UNIBUS_22BIT) addr = this.mapUnibus(addr);
|
||||
return this.bus.getWord(this.addrLast = addr);
|
||||
};
|
||||
|
||||
/**
|
||||
* readWordFromPhysicalChecked(addr)
|
||||
*
|
||||
* This is a handler set up by setMemoryAccess(). All calls should go through readWord().
|
||||
*
|
||||
* @this {CPUStatePDP11}
|
||||
* @param {number} addr
|
||||
* @return {number}
|
||||
*/
|
||||
CPUStatePDP11.prototype.readWordFromPhysicalChecked = function(addr)
|
||||
{
|
||||
if (DEBUGGER && this.dbg) {
|
||||
this.dbg.checkMemoryRead(addr, 2);
|
||||
}
|
||||
return this.readWordFromPhysical(addr);
|
||||
};
|
||||
|
||||
/**
|
||||
* readWordFromVirtual(addrVirtual)
|
||||
*
|
||||
|
|
@ -2202,6 +2336,23 @@ CPUStatePDP11.prototype.readWordFromVirtual = function(addrVirtual)
|
|||
return this.bus.getWord(this.addrLast = this.mapVirtualToPhysical(addrVirtual, PDP11.ACCESS.READ_WORD));
|
||||
};
|
||||
|
||||
/**
|
||||
* readWordFromVirtualChecked(addrVirtual)
|
||||
*
|
||||
* This is a handler set up by setMemoryAccess(). All calls should go through readWord().
|
||||
*
|
||||
* @this {CPUStatePDP11}
|
||||
* @param {number} addrVirtual (input address is 17 bit (I&D))
|
||||
* @return {number}
|
||||
*/
|
||||
CPUStatePDP11.prototype.readWordFromVirtualChecked = function(addrVirtual)
|
||||
{
|
||||
if (DEBUGGER && this.dbg) {
|
||||
this.dbg.checkMemoryRead(addrVirtual, 2);
|
||||
}
|
||||
return this.readWordFromVirtual(addrVirtual);
|
||||
};
|
||||
|
||||
/**
|
||||
* writeWordToPhysical(addr, data)
|
||||
*
|
||||
|
|
@ -2213,11 +2364,26 @@ CPUStatePDP11.prototype.readWordFromVirtual = function(addrVirtual)
|
|||
*/
|
||||
CPUStatePDP11.prototype.writeWordToPhysical = function(addr, data)
|
||||
{
|
||||
if (addr >= BusPDP11.UNIBUS_22BIT) addr = this.mapUnibus(addr);
|
||||
this.assert(!(data & ~0xffff));
|
||||
this.bus.setWord(this.addrLast = addr, data);
|
||||
};
|
||||
|
||||
/**
|
||||
* writeWordToPhysicalChecked(addr, data)
|
||||
*
|
||||
* This is a handler set up by setMemoryAccess(). All calls should go through writeWord().
|
||||
*
|
||||
* @this {CPUStatePDP11}
|
||||
* @param {number} addr
|
||||
* @param {number} data
|
||||
*/
|
||||
CPUStatePDP11.prototype.writeWordToPhysicalChecked = function(addr, data)
|
||||
{
|
||||
if (DEBUGGER && this.dbg) {
|
||||
this.dbg.checkMemoryWrite(addr, 2);
|
||||
}
|
||||
this.writeWordToPhysical(addr, data);
|
||||
};
|
||||
|
||||
/**
|
||||
* writeWordToVirtual(addrVirtual, data)
|
||||
*
|
||||
|
|
@ -2232,6 +2398,23 @@ CPUStatePDP11.prototype.writeWordToVirtual = function(addrVirtual, data)
|
|||
this.bus.setWord(this.addrLast = this.mapVirtualToPhysical(addrVirtual, PDP11.ACCESS.WRITE_WORD), data);
|
||||
};
|
||||
|
||||
/**
|
||||
* writeWordToVirtualChecked(addrVirtual, data)
|
||||
*
|
||||
* This is a handler set up by setMemoryAccess(). All calls should go through writeWord().
|
||||
*
|
||||
* @this {CPUStatePDP11}
|
||||
* @param {number} addrVirtual (input address is 17 bit (I&D))
|
||||
* @param {number} data
|
||||
*/
|
||||
CPUStatePDP11.prototype.writeWordToVirtualChecked = function(addrVirtual, data)
|
||||
{
|
||||
if (DEBUGGER && this.dbg) {
|
||||
this.dbg.checkMemoryWrite(addrVirtual, 2);
|
||||
}
|
||||
this.writeWordToVirtual(addrVirtual, data);
|
||||
};
|
||||
|
||||
/**
|
||||
* readWordFromPrevSpace(opCode, access)
|
||||
*
|
||||
|
|
@ -2287,14 +2470,14 @@ CPUStatePDP11.prototype.writeWordToPrevSpace = function(opCode, access, data)
|
|||
if (!(access & PDP11.ACCESS.DSPACE)) addr &= 0xffff;
|
||||
/*
|
||||
* TODO: Consider replacing the following code with writeWord(), by adding optional pswMode
|
||||
* parameters for each of the discrete mapVirtualToPhysical() and bus.setWord() operations, because
|
||||
* parameters for each of the discrete mapVirtualToPhysical() and setWord() operations, because
|
||||
* as it stands, this is the only remaining call to mapVirtualToPhysical() outside of our
|
||||
* setMemoryAccess() handlers.
|
||||
*/
|
||||
this.pswMode = (this.regPSW >> 12) & 3;
|
||||
addr = this.mapVirtualToPhysical(addr | (access & PDP11.ACCESS.DSPACE), PDP11.ACCESS.WRITE);
|
||||
this.pswMode = (this.regPSW >> 14) & 3;
|
||||
this.bus.setWord(addr, data);
|
||||
this.setWord(addr, data);
|
||||
}
|
||||
};
|
||||
|
||||
|
|
@ -2319,7 +2502,7 @@ CPUStatePDP11.prototype.readSrcByte = function(opCode)
|
|||
if (!mode) {
|
||||
result = this.regsGen[reg + this.offRegSrc] & this.maskRegSrcByte;
|
||||
} else {
|
||||
result = this.bus.getByte(this.getAddr(mode, reg, PDP11.ACCESS.READ_BYTE));
|
||||
result = this.getByte(this.getAddr(mode, reg, PDP11.ACCESS.READ_BYTE));
|
||||
}
|
||||
return result;
|
||||
};
|
||||
|
|
@ -2361,7 +2544,7 @@ CPUStatePDP11.prototype.readSrcWord = function(opCode)
|
|||
if (!mode) {
|
||||
result = this.regsGen[reg + this.offRegSrc];
|
||||
} else {
|
||||
result = this.bus.getWord(this.getAddr(mode, reg, PDP11.ACCESS.READ_WORD));
|
||||
result = this.getWord(this.getAddr(mode, reg, PDP11.ACCESS.READ_WORD));
|
||||
}
|
||||
return result;
|
||||
};
|
||||
|
|
@ -2395,7 +2578,7 @@ CPUStatePDP11.prototype.readDstByte = function(opCode)
|
|||
if (!mode) {
|
||||
result = this.regsGen[reg] & 0xff;
|
||||
} else {
|
||||
result = this.bus.getByte(this.getAddr(mode, reg, PDP11.ACCESS.READ_BYTE));
|
||||
result = this.getByte(this.getAddr(mode, reg, PDP11.ACCESS.READ_BYTE));
|
||||
}
|
||||
return result;
|
||||
};
|
||||
|
|
@ -2415,7 +2598,7 @@ CPUStatePDP11.prototype.readDstWord = function(opCode)
|
|||
if (!mode) {
|
||||
result = this.regsGen[reg];
|
||||
} else {
|
||||
result = this.bus.getWord(this.getAddr(mode, reg, PDP11.ACCESS.READ_WORD));
|
||||
result = this.getWord(this.getAddr(mode, reg, PDP11.ACCESS.READ_WORD));
|
||||
}
|
||||
return result;
|
||||
};
|
||||
|
|
@ -2441,7 +2624,7 @@ CPUStatePDP11.prototype.updateDstByte = function(opCode, data, fnOp)
|
|||
} else {
|
||||
var addr = this.dstAddr = this.getAddr(mode, reg, PDP11.ACCESS.UPDATE_BYTE);
|
||||
data = (data < 0? (this.regsGen[-data-1] & 0xff) : data);
|
||||
this.bus.setByte(addr, fnOp.call(this, data, this.bus.getByte(addr)));
|
||||
this.setByte(addr, fnOp.call(this, data, this.getByte(addr)));
|
||||
if (addr & 1) this.nStepCycles--;
|
||||
}
|
||||
};
|
||||
|
|
@ -2467,7 +2650,7 @@ CPUStatePDP11.prototype.updateDstWord = function(opCode, data, fnOp)
|
|||
this.regsGen[reg] = fnOp.call(this, data < 0? this.regsGen[-data-1] : data, this.regsGen[reg]);
|
||||
} else {
|
||||
var addr = this.getAddr(mode, reg, PDP11.ACCESS.UPDATE_WORD);
|
||||
this.bus.setWord(addr, fnOp.call(this, data < 0? this.regsGen[-data-1] : data, this.bus.getWord(addr)));
|
||||
this.setWord(addr, fnOp.call(this, data < 0? this.regsGen[-data-1] : data, this.getWord(addr)));
|
||||
}
|
||||
};
|
||||
|
||||
|
|
@ -2505,7 +2688,7 @@ CPUStatePDP11.prototype.writeDstByte = function(opCode, data, writeFlags, fnFlag
|
|||
} else {
|
||||
var addr = this.getAddr(mode, reg, PDP11.ACCESS.WRITE_BYTE);
|
||||
fnFlags.call(this, (data = data < 0? (this.regsGen[-data-1] & 0xff) : data) << 8);
|
||||
this.bus.setByte(addr, data);
|
||||
this.setByte(addr, data);
|
||||
if (addr & 1) this.nStepCycles--;
|
||||
}
|
||||
};
|
||||
|
|
@ -2533,7 +2716,7 @@ CPUStatePDP11.prototype.writeDstWord = function(opCode, data, fnFlags)
|
|||
} else {
|
||||
var addr = this.getAddr(mode, reg, PDP11.ACCESS.WRITE_WORD);
|
||||
fnFlags.call(this, (data = data < 0? this.regsGen[-data-1] : data));
|
||||
this.bus.setWord(addr, data);
|
||||
this.setWord(addr, data);
|
||||
}
|
||||
};
|
||||
|
||||
|
|
|
|||
|
|
@ -895,7 +895,7 @@ if (DEBUGGER) {
|
|||
*/
|
||||
DebuggerPDP11.prototype.toStrAddr = function(dbgAddr)
|
||||
{
|
||||
return this.toStrOffset(dbgAddr.addr);
|
||||
return (dbgAddr.fPhysical? '%' : '') + this.toStrOffset(dbgAddr.addr);
|
||||
};
|
||||
|
||||
/**
|
||||
|
|
@ -943,8 +943,8 @@ if (DEBUGGER) {
|
|||
n = 1;
|
||||
}
|
||||
|
||||
this.println("blockid physical blockaddr used size type");
|
||||
this.println("-------- --------- ---------- ------ ------ ----");
|
||||
this.println("blockid physical blockaddr used size type");
|
||||
this.println("-------- --------- --------- ------ ------ ----");
|
||||
|
||||
var typePrev = -1, cPrev = 0;
|
||||
while (n--) {
|
||||
|
|
@ -955,7 +955,7 @@ if (DEBUGGER) {
|
|||
typePrev = block.type;
|
||||
var sType = MemoryPDP11.TYPE_NAMES[typePrev];
|
||||
if (block) {
|
||||
this.println(str.toHex(block.id, 8) + " %" + str.toHex(i << this.bus.nBlockShift, 8) + " %%" + str.toHex(block.addr, 8) + " " + str.toHexWord(block.used) + " " + str.toHexWord(block.size) + " " + sType);
|
||||
this.println(str.toHex(block.id, 8) + " %" + str.toHex(i << this.bus.nBlockShift, 8) + " %" + str.toHex(block.addr, 8) + " " + str.toHexWord(block.used) + " " + str.toHexWord(block.size) + " " + sType);
|
||||
}
|
||||
if (typePrev != MemoryPDP11.TYPE.NONE) typePrev = -1;
|
||||
cPrev = 0;
|
||||
|
|
@ -1731,12 +1731,40 @@ if (DEBUGGER) {
|
|||
var cpu = this.cpu;
|
||||
|
||||
/*
|
||||
* Since opHalt() will rewind the PC on a HALT, purely for our debugging benefit, we must compensate
|
||||
* for that here by skipping over the HALT if/when the machine starts up again.
|
||||
* If opHalt() calls our stopInstruction() function, it will effectively rewind the PC back to the HALT,
|
||||
* purely for our debugging benefit, so we must compensate for that here by advancing the PC past the HALT
|
||||
* when the machine starts up again.
|
||||
*/
|
||||
if (!nState) {
|
||||
opCode = this.cpu.getWordSafe(addr);
|
||||
if (opCode == PDP11.OPCODE.HALT) {
|
||||
/*
|
||||
* We have to be careful about this HALT-skipping code, because as fate would have it, I inadvertently
|
||||
* stopped the following diagnostic with a breakpoint *on* a HALT instruction:
|
||||
*
|
||||
* .R EKBEE1
|
||||
* EKBEE1.BIC
|
||||
*
|
||||
* CEKBEE0 11/70 MEM MGMT
|
||||
*
|
||||
* CPU UNDER TEST FOUND TO BE A KB11-CM
|
||||
* bp 033330 hit
|
||||
* stopped (28339757 instructions, 123994176 cycles, 19177 ms, 6465775 hz)
|
||||
* R0=140000 R1=033330 R2=100143 R3=133260 R4=000000 R5=177700
|
||||
* SP=000600 PC=033330 PS=140000 IR=000000 SL=000377 T0 N0 Z0 V0 C0
|
||||
* 033330: 000000 HALT
|
||||
*
|
||||
* Since we haven't executed the HALT yet, it would be wrong (and would cause a diagnostic failure) to
|
||||
* skip over it. In this particular case, the PDR for the address of the HALT instruction was invalid,
|
||||
* so the HALT gets fetched but not executed.
|
||||
*
|
||||
* My first thought was that maybe we need to probe the address more thoroughly (getWordSafe() does
|
||||
* not), but it should be sufficient to simply confirm that the PC of the last opcode executed matches
|
||||
* the addr of this HALT.
|
||||
*
|
||||
* Yes, I could save myself this grief by eliminating these PC hacks, both here and in stopInstruction(),
|
||||
* but I still think it's a useful debugging aid.
|
||||
*/
|
||||
if (opCode == PDP11.OPCODE.HALT && this.cpu.getLastPC() == addr) {
|
||||
addr = this.cpu.advancePC(2);
|
||||
}
|
||||
}
|
||||
|
|
@ -1873,19 +1901,29 @@ if (DEBUGGER) {
|
|||
*/
|
||||
DebuggerPDP11.prototype.clearBreakpoints = function()
|
||||
{
|
||||
var i, dbgAddr;
|
||||
var i, dbgAddr, addr;
|
||||
this.aBreakExec = ["bp"];
|
||||
if (this.aBreakRead !== undefined) {
|
||||
for (i = 1; i < this.aBreakRead.length; i++) {
|
||||
dbgAddr = this.aBreakRead[i];
|
||||
this.bus.removeMemBreak(this.getAddr(dbgAddr), false);
|
||||
addr = this.getAddr(dbgAddr);
|
||||
if (!dbgAddr.fPhysical) {
|
||||
this.cpu.removeMemBreak(addr, false);
|
||||
} else {
|
||||
this.bus.removeMemBreak(addr, false);
|
||||
}
|
||||
}
|
||||
}
|
||||
this.aBreakRead = ["br"];
|
||||
if (this.aBreakWrite !== undefined) {
|
||||
for (i = 1; i < this.aBreakWrite.length; i++) {
|
||||
dbgAddr = this.aBreakWrite[i];
|
||||
this.bus.removeMemBreak(this.getAddr(dbgAddr), true);
|
||||
addr = this.getAddr(dbgAddr);
|
||||
if (!dbgAddr.fPhysical) {
|
||||
this.cpu.removeMemBreak(addr, true);
|
||||
} else {
|
||||
this.bus.removeMemBreak(addr, true);
|
||||
}
|
||||
}
|
||||
}
|
||||
this.aBreakWrite = ["bw"];
|
||||
|
|
@ -1947,7 +1985,17 @@ if (DEBUGGER) {
|
|||
this.println("invalid address: " + this.toStrAddr(dbgAddr));
|
||||
fSuccess = false;
|
||||
} else {
|
||||
this.bus.addMemBreak(addr, aBreak == this.aBreakWrite);
|
||||
var fWrite = (aBreak == this.aBreakWrite);
|
||||
/*
|
||||
* We automatically promote any read/write breakpoint address to fPhysical if it's
|
||||
* outside the 16-bit virtual address range.
|
||||
*/
|
||||
if (addr > 0xffff) dbgAddr.fPhysical = true;
|
||||
if (!dbgAddr.fPhysical) {
|
||||
this.cpu.addMemBreak(addr, fWrite);
|
||||
} else {
|
||||
this.bus.addMemBreak(addr, fWrite);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
|
|
@ -1993,7 +2041,12 @@ if (DEBUGGER) {
|
|||
}
|
||||
aBreak.splice(i, 1);
|
||||
if (aBreak != this.aBreakExec) {
|
||||
this.bus.removeMemBreak(addr, aBreak == this.aBreakWrite);
|
||||
var fWrite = (aBreak == this.aBreakWrite);
|
||||
if (!dbgAddrBreak.fPhysical) {
|
||||
this.cpu.removeMemBreak(addr, fWrite);
|
||||
} else {
|
||||
this.bus.removeMemBreak(addr, fWrite);
|
||||
}
|
||||
}
|
||||
/*
|
||||
* We'll mirror the logic in addBreakpoint() and leave the history buffer alone if this
|
||||
|
|
|
|||
|
|
@ -32,333 +32,335 @@
|
|||
http://pcjs.org/modules/pdp11/lib/computer.js (C) Jeff Parsons 2012-2016
|
||||
http://pcjs.org/modules/shared/lib/state.js (C) Jeff Parsons 2012-2016
|
||||
*/
|
||||
for(var k,aa="function"==typeof Object.defineProperties?Object.defineProperty:function(a,b,c){if(c.get||c.set)throw new TypeError("ES3 does not support getters and setters.");a!=Array.prototype&&a!=Object.prototype&&(a[b]=c.value)},ba="undefined"!=typeof window&&window===this?this:"undefined"!=typeof global?global:this,ca=["Math","log2"],da=0;da<ca.length-1;da++){var ea=ca[da];ea in ba||(ba[ea]={});ba=ba[ea]}var fa=ca[ca.length-1],ia=ba[fa],ja=ia?ia:function(a){return Math.log(a)/Math.LN2};
|
||||
ja!=ia&&null!=ja&&aa(ba,fa,{configurable:!0,writable:!0,value:ja});
|
||||
var ka={163840:[40,1,8,,254],184320:[40,1,9,,252],327680:[40,2,8,,255],368640:[40,2,9,,253],737280:[80,2,9,,249],1228800:[80,2,15,,249],1474560:[80,2,18,,240],2949120:[80,2,36,,240],21368320:[615,4,17],2494464:[203,2,12,512],5242880:[256,2,40,256],10485760:[512,2,40,256]},la={Jf:0,Yc:1,Lf:2,Mf:3,Nf:4,Of:5,Pf:6,Qf:7,Ac:8,Rf:9,Zc:10,Sf:11,Tf:12,$c:13,Uf:14,Vf:15,Wf:16,Xf:17,Yf:18,Zf:19,$f:20,ag:21,bg:22,cg:23,dg:24,eg:25,fg:26," ":32,"!":33,'"':34,"#":35,$:36,"%":37,"&":38,"'":39,"(":40,")":41,"*":42,
|
||||
"+":43,",":44,"-":45,".":46,"/":47,0:48,1:49,2:50,3:51,4:52,5:53,6:54,7:55,8:56,9:57,":":58,";":59,"<":60,"=":61,">":62,"?":63,"@":64,yc:65,If:66,Kf:67,gg:68,E:69,hg:70,ig:71,jg:72,kg:73,lg:74,mg:75,ng:76,og:77,pg:78,qg:79,rg:80,Q:81,sg:82,tg:83,ug:84,vg:85,wg:86,xg:87,yg:88,zg:89,hd:90,"[":91,"\\":92,"]":93,"^":94,_:95,"`":96,Ag:97,Bg:98,Cg:99,d:100,e:101,Eg:102,Fg:103,Gg:104,Hg:105,Kg:106,k:107,Lg:108,Mg:109,n:110,Ng:111,p:112,q:113,r:114,Og:115,t:116,Qg:117,Rg:118,Sg:119,x:120,y:121,z:122,"{":123,
|
||||
"|":124,"}":125,"~":126,ad:127};
|
||||
function na(a,b){var c;if(a){b||(b=10);var d=a.charAt(0),e=0<a.indexOf(",");e&&(a=a.replace(/,/g,""));"#"==d?(b=8,d=null):"$"==d&&(b=16,d=null);null==d?a=a.substr(1):("0"==d&&(d=a.charAt(1),"b"==d&&e&&(b=2,d=null),"o"==d?(b=8,d=null):"x"==d&&(b=16,d=null)),null==d?a=a.substr(2):(d=a.charAt(a.length-1).toLowerCase(),"y"==d?(b=2,d=null):"."==d?(b=10,d=null):"h"==d&&(b=16,d=null),null==d&&(a=a.substr(0,a.length-1))));var f,d=a;((e=b)&&10!=e?16==e?d.match(/^[0-9a-f]+$/i):8==e?d.match(/^[0-7]+$/):2==e&&
|
||||
for(var h,aa="function"==typeof Object.defineProperties?Object.defineProperty:function(a,b,c){if(c.get||c.set)throw new TypeError("ES3 does not support getters and setters.");a!=Array.prototype&&a!=Object.prototype&&(a[b]=c.value)},ba="undefined"!=typeof window&&window===this?this:"undefined"!=typeof global?global:this,ca=["Math","log2"],da=0;da<ca.length-1;da++){var ea=ca[da];ea in ba||(ba[ea]={});ba=ba[ea]}var fa=ca[ca.length-1],ga=ba[fa],ja=ga?ga:function(a){return Math.log(a)/Math.LN2};
|
||||
ja!=ga&&null!=ja&&aa(ba,fa,{configurable:!0,writable:!0,value:ja});
|
||||
var ka={163840:[40,1,8,,254],184320:[40,1,9,,252],327680:[40,2,8,,255],368640:[40,2,9,,253],737280:[80,2,9,,249],1228800:[80,2,15,,249],1474560:[80,2,18,,240],2949120:[80,2,36,,240],21368320:[615,4,17],2494464:[203,2,12,512],5242880:[256,2,40,256],10485760:[512,2,40,256]},la={$f:0,ld:1,bg:2,cg:3,dg:4,eg:5,fg:6,gg:7,Jc:8,hg:9,md:10,ig:11,jg:12,nd:13,kg:14,lg:15,mg:16,ng:17,og:18,pg:19,qg:20,rg:21,sg:22,tg:23,ug:24,vg:25,wg:26," ":32,"!":33,'"':34,"#":35,$:36,"%":37,"&":38,"'":39,"(":40,")":41,"*":42,
|
||||
"+":43,",":44,"-":45,".":46,"/":47,0:48,1:49,2:50,3:51,4:52,5:53,6:54,7:55,8:56,9:57,":":58,";":59,"<":60,"=":61,">":62,"?":63,"@":64,Gc:65,Zf:66,ag:67,xg:68,E:69,yg:70,zg:71,Ag:72,Bg:73,Cg:74,Dg:75,Eg:76,Fg:77,Gg:78,Hg:79,Ig:80,Q:81,Jg:82,Kg:83,Lg:84,Mg:85,Ng:86,Og:87,Pg:88,Qg:89,vd:90,"[":91,"\\":92,"]":93,"^":94,_:95,"`":96,Rg:97,Sg:98,Tg:99,d:100,e:101,Vg:102,Wg:103,Xg:104,Yg:105,ah:106,k:107,bh:108,dh:109,n:110,eh:111,p:112,q:113,r:114,fh:115,t:116,hh:117,ih:118,jh:119,x:120,y:121,z:122,"{":123,
|
||||
"|":124,"}":125,"~":126,od:127};
|
||||
function ma(a,b){var c;if(a){b||(b=10);var d=a.charAt(0),e=0<a.indexOf(",");e&&(a=a.replace(/,/g,""));"#"==d?(b=8,d=null):"$"==d&&(b=16,d=null);null==d?a=a.substr(1):("0"==d&&(d=a.charAt(1),"b"==d&&e&&(b=2,d=null),"o"==d?(b=8,d=null):"x"==d&&(b=16,d=null)),null==d?a=a.substr(2):(d=a.charAt(a.length-1).toLowerCase(),"y"==d?(b=2,d=null):"."==d?(b=10,d=null):"h"==d&&(b=16,d=null),null==d&&(a=a.substr(0,a.length-1))));var f,d=a;((e=b)&&10!=e?16==e?d.match(/^[0-9a-f]+$/i):8==e?d.match(/^[0-7]+$/):2==e&&
|
||||
d.match(/^[01]+$/):d.match(/^[0-9]+$/))&&!isNaN(f=parseInt(a,b))&&(c=f|0)}return c}function oa(a,b,c){var d="";b?32<b&&(b=32):b=32;for(var e=null==a||isNaN(a),f=c=c||b;0<b--;)f||(d=","+d,f=c),d=(e?"?":a&1?"1":"0")+d,a>>=1,f--;return d}function p(a,b,c){var d="";b?11<b&&(b=11):b=a&-65536?11:6;if(null==a||isNaN(a))for(;0<b--;)d="?"+d;else for(;0<b--;)d=String.fromCharCode((a&7)+48)+d,a>>=3;return(c?"0o":"")+d}
|
||||
function q(a,b,c){var d="";b?8<b&&(b=8):b=a&-65536?8:4;if(null==a||isNaN(a))for(;0<b--;)d="?"+d;else for(;0<b--;){var e=a&15,e=e+(0<=e&&9>=e?48:55),d=String.fromCharCode(e)+d;a>>=4}return(c?"0x":"")+d}function v(a){return q(a,4,!0)}function w(a,b){var c=a,d=a.lastIndexOf("/");0<=d&&(c=a.substr(d+1));d=c.indexOf("&");0<d&&(c=c.substr(0,d));b&&(d=c.lastIndexOf("."),0<d&&(c=c.substring(0,d)));return c}function pa(a){var b="",c=a.lastIndexOf(".");0<=c&&(b=a.substr(c+1).toLowerCase());return b}
|
||||
function qa(a,b){return-1!==a.indexOf(b,a.length-b.length)}var ra={"&":"&","<":"<",">":">",'"':""","'":"'"};function sa(a){return a.replace(/[&<>"']/g,function(a){return ra[a]})}function ta(a,b){return(a+" ").slice(0,b)}function za(a){return String.prototype.trim?a.trim():a.replace(/^\s+|\s+$/g,"")}
|
||||
var Aa={0:"NUL",1:"SOH",2:"STX",3:"ETX",4:"EOT",5:"ENQ",6:"ACK",7:"BEL",8:"BS",9:"TAB",10:"LF",11:"VT",12:"FF",13:"CR",14:"SO",15:"SI",16:"DLE",17:"XON",18:"DC2",19:"XOFF",20:"DC4",21:"NAK",22:"SYN",23:"ETB",24:"CAN",25:"EM",26:"SUB",27:"ESC",28:"FS",29:"GS",30:"RS",31:"US"};function Ba(a,b,c){var d=0,e=a.length,f=0;for(c||(c=function(a,b){return a>b?1:a<b?-1:0});d<e;){var g=d+e>>1,h;h=c(b,a[g]);0<h?d=g+1:(e=g,f=!h)}return f?d:~d}var Ca=Date.now||function(){return+new Date};
|
||||
function qa(a,b){return-1!==a.indexOf(b,a.length-b.length)}var ra={"&":"&","<":"<",">":">",'"':""","'":"'"};function sa(a){return a.replace(/[&<>"']/g,function(a){return ra[a]})}function ta(a,b){return(a+" ").slice(0,b)}function ua(a){return String.prototype.trim?a.trim():a.replace(/^\s+|\s+$/g,"")}
|
||||
var va={0:"NUL",1:"SOH",2:"STX",3:"ETX",4:"EOT",5:"ENQ",6:"ACK",7:"BEL",8:"BS",9:"TAB",10:"LF",11:"VT",12:"FF",13:"CR",14:"SO",15:"SI",16:"DLE",17:"XON",18:"DC2",19:"XOFF",20:"DC4",21:"NAK",22:"SYN",23:"ETB",24:"CAN",25:"EM",26:"SUB",27:"ESC",28:"FS",29:"GS",30:"RS",31:"US"};function Ba(a,b,c){var d=0,e=a.length,f=0;for(c||(c=function(a,b){return a>b?1:a<b?-1:0});d<e;){var g=d+e>>1,k;k=c(b,a[g]);0<k?d=g+1:(e=g,f=!k)}return f?d:~d}var Ca=Date.now||function(){return+new Date};
|
||||
function Da(){function a(a){return(10>a?"0":"")+a}var b=new Date;return b.getFullYear()+"-"+a(b.getMonth()+1)+"-"+a(b.getDate())+" "+a(b.getHours())+":"+a(b.getMinutes())+":"+a(b.getSeconds())}
|
||||
function Ea(a,b,c,d){var e=0,f=null,g=null;if("object"==typeof resources&&(f=resources[a]))return d&&d(a,f,e),[f,e];if(c&&"function"==typeof resources)return resources(a,function(b,c){d&&d(a,b,c)}),g;var h=window.XMLHttpRequest?new window.XMLHttpRequest:new window.ActiveXObject("Microsoft.XMLHTTP");c&&(h.onreadystatechange=function(){4===h.readyState&&(f=h.responseText,200==h.status||!h.status&&f.length&&"file:"==(window?window.location.protocol:"file:")||(e=h.status||-1),d&&d(a,f,e))});if(b&&"object"==
|
||||
typeof b){var l="",m;for(m in b)b.hasOwnProperty(m)&&(l&&(l+="&"),l+=m+"="+encodeURIComponent(b[m]));l=l.replace(/%20/g,"+");h.open("POST",a,!!c);h.setRequestHeader("Content-type","application/x-www-form-urlencoded");h.send(l)}else h.open("GET",a,!!c),"bytes"==b&&h.overrideMimeType("text/plain; charset=x-user-defined"),h.send();c||(f=h.responseText,200!=h.status&&(e=h.status||-1),d&&d(a,f,e),g=[f,e]);return g}
|
||||
function Fa(a,b){var c,d={ha:null,ja:null,Wa:null,Va:null};if("["==b.charAt(0)||"{"==b.charAt(0))try{var e,f,g;if("<"==b.substr(0,1))throw Error(b);g=0>b.indexOf("0x")&&'["'!=b.substr(0,2)?JSON.parse(b.replace(/([a-z]+):/gm,'"$1":').replace(/\/\/[^\n]*/gm,"")):eval("("+b+")");d.Wa=g.load;d.Va=g.exec;if(e=g.bytes)d.ha=e;else if(e=g.words)for(d.ha=Array(2*e.length),f=c=0;c<e.length;c++)d.ha[f++]=e[c]&255,d.ha[f++]=e[c]>>8&255;else if(e=g.data)for(d.ha=Array(4*e.length),f=c=0;c<e.length;c++)d.ha[f++]=
|
||||
e[c]&255,d.ha[f++]=e[c]>>8&255,d.ha[f++]=e[c]>>16&255,d.ha[f++]=e[c]>>24&255;else d.ha=g;d.ja=g.symbols;d.ha.length?1==d.ha.length&&(x(d.ha[0]),d=null):(x("Empty resource: "+a),d=null)}catch(h){x("Resource data error ("+a+"): "+h.message),d=null}else{e=[];b=b.replace(/\n/gm," ").replace(/ +$/,"").split(" ");for(c=0;c<b.length;c++){f=parseInt(b[c],16);if(isNaN(f)){x("Resource data error ("+a+"): invalid hex byte ("+b[c]+")");break}e.push(f&255)}c==b.length&&(d.ha=e)}return d}
|
||||
function Ga(){return"http://"+(window?window.location.host:"www.pcjs.org")}function x(a){window&&window.alert(a)}function Ha(a){var b=!1;window&&(b=window.confirm(a));return b}var Ia=null;function Ma(){if(null==Ia){var a=!1;if(window)try{window.localStorage.setItem("PCjs.localStorage","PCjs.localStorage"),a="PCjs.localStorage"==window.localStorage.getItem("PCjs.localStorage"),window.localStorage.removeItem("PCjs.localStorage")}catch(b){a=!1}Ia=a}return Ia}
|
||||
function Na(a){var b;if(window)try{b=window.localStorage.getItem(a)}catch(c){}return b}function Oa(a,b){try{return window.localStorage.setItem(a,b),!0}catch(c){}return!1}function Pa(a){if(window){var b=window?window.navigator.userAgent:"";return"iOS"==a&&b.match(/(iPod|iPhone|iPad)/)&&b.match(/AppleWebKit/)||"MSIE"==a&&b.match(/(MSIE|Trident)/)||0<=b.indexOf(a)?!0:!1}return!1}
|
||||
function Ea(a,b,c,d){var e=0,f=null,g=null;if("object"==typeof resources&&(f=resources[a]))return d&&d(a,f,e),[f,e];if(c&&"function"==typeof resources)return resources(a,function(b,c){d&&d(a,b,c)}),g;var k=window.XMLHttpRequest?new window.XMLHttpRequest:new window.ActiveXObject("Microsoft.XMLHTTP");c&&(k.onreadystatechange=function(){4===k.readyState&&(f=k.responseText,200==k.status||!k.status&&f.length&&"file:"==(window?window.location.protocol:"file:")||(e=k.status||-1),d&&d(a,f,e))});if(b&&"object"==
|
||||
typeof b){var l="",m;for(m in b)b.hasOwnProperty(m)&&(l&&(l+="&"),l+=m+"="+encodeURIComponent(b[m]));l=l.replace(/%20/g,"+");k.open("POST",a,!!c);k.setRequestHeader("Content-type","application/x-www-form-urlencoded");k.send(l)}else k.open("GET",a,!!c),"bytes"==b&&k.overrideMimeType("text/plain; charset=x-user-defined"),k.send();c||(f=k.responseText,200!=k.status&&(e=k.status||-1),d&&d(a,f,e),g=[f,e]);return g}
|
||||
function Fa(a,b){var c,d={ha:null,ka:null,Wa:null,Va:null};if("["==b.charAt(0)||"{"==b.charAt(0))try{var e,f,g;if("<"==b.substr(0,1))throw Error(b);g=0>b.indexOf("0x")&&'["'!=b.substr(0,2)?JSON.parse(b.replace(/([a-z]+):/gm,'"$1":').replace(/\/\/[^\n]*/gm,"")):eval("("+b+")");d.Wa=g.load;d.Va=g.exec;if(e=g.bytes)d.ha=e;else if(e=g.words)for(d.ha=Array(2*e.length),f=c=0;c<e.length;c++)d.ha[f++]=e[c]&255,d.ha[f++]=e[c]>>8&255;else if(e=g.data)for(d.ha=Array(4*e.length),f=c=0;c<e.length;c++)d.ha[f++]=
|
||||
e[c]&255,d.ha[f++]=e[c]>>8&255,d.ha[f++]=e[c]>>16&255,d.ha[f++]=e[c]>>24&255;else d.ha=g;d.ka=g.symbols;d.ha.length?1==d.ha.length&&(x(d.ha[0]),d=null):(x("Empty resource: "+a),d=null)}catch(k){x("Resource data error ("+a+"): "+k.message),d=null}else{e=[];b=b.replace(/\n/gm," ").replace(/ +$/,"").split(" ");for(c=0;c<b.length;c++){f=parseInt(b[c],16);if(isNaN(f)){x("Resource data error ("+a+"): invalid hex byte ("+b[c]+")");break}e.push(f&255)}c==b.length&&(d.ha=e)}return d}
|
||||
function Ga(){return"http://"+(window?window.location.host:"www.pcjs.org")}function x(a){window&&window.alert(a)}function Ha(a){var b=!1;window&&(b=window.confirm(a));return b}var Ia=null;function Ja(){if(null==Ia){var a=!1;if(window)try{window.localStorage.setItem("PCjs.localStorage","PCjs.localStorage"),a="PCjs.localStorage"==window.localStorage.getItem("PCjs.localStorage"),window.localStorage.removeItem("PCjs.localStorage")}catch(b){a=!1}Ia=a}return Ia}
|
||||
function Ka(a){var b;if(window)try{b=window.localStorage.getItem(a)}catch(c){}return b}function Oa(a,b){try{return window.localStorage.setItem(a,b),!0}catch(c){}return!1}function Pa(a){if(window){var b=window?window.navigator.userAgent:"";return"iOS"==a&&b.match(/(iPod|iPhone|iPad)/)&&b.match(/AppleWebKit/)||"MSIE"==a&&b.match(/(MSIE|Trident)/)||0<=b.indexOf(a)?!0:!1}return!1}
|
||||
function Qa(a,b){var c=null;a="data:application/octet-stream;base64,"+a;b&&(c=document.createElement("a"),"string"!=typeof c.download&&(c=null));c?(c.href=a,c.download=b,document.body.appendChild(c),c.click(),document.body.removeChild(c),b="Check your Downloads folder for "+b+"."):(window.open(a),b="Check your browser for a new window/tab containing the requested data"+(b?" ("+b+")":"")+".");return b}function Ra(a,b,c){function d(){--a;0<=a&&(b()||(a=0));0<a?setTimeout(d,0):c()}d()}
|
||||
function Ta(a,b){function c(){b(100===d)&&(e=setTimeout(c,d),d=100)}var d=0,e=null,f=!1;a.onmousedown=function(){f||e||(d=500,c())};a.ontouchstart=function(){e||(d=500,c())};a.onmouseup=a.onmouseout=function(){e&&(clearTimeout(e),e=null)};a.ontouchend=a.ontouchcancel=function(){e&&(clearTimeout(e),e=null);f=!0}}var Ua={init:[],show:[],exit:[]},$a=!1,ab=!1,bb=!0;function cb(a,b){if(window){var c=window[a];window[a]="function"!==typeof c?b:function(){c&&c();b()}}}function db(a){Ua.init.push(a)}
|
||||
function eb(a){if(bb)try{for(var b=0;b<a.length;b++)a[b]()}catch(c){x(""+("An unexpected exception occurred:\n\n"+c.message+"\n\nPlease send this information to support@pcjs.org. Thanks."))}}function fb(a){!bb&&a?(bb=!0,$a&&gb("init"),ab&&gb("show")):bb=a}function gb(a){Ua[a]&&eb(Ua[a])}cb("onload",function(){$a=!0;eb(Ua.init)});cb("onpageshow",function(){ab=!0;eb(Ua.show)});cb(Pa("Opera")||Pa("iOS")?"onunload":"onbeforeunload",function(){eb(Ua.exit)});
|
||||
function z(a,b,c,d){this.type=a;b||(b={id:"",name:""});this.id=b.id||"";this.name=b.name;this.Ec=b.comment;this.pd=b;b=this.id.indexOf(".");0>b?this.mb=this.id:(this.nb=this.id.substr(0,b),this.mb=this.id.substr(b+1));this[a]=c;this.C={ready:!1,ob:!1,oc:!1,la:!1,error:!1};this.ec=null;this.C.error=!1;this.D={};this.j=null;this.pa=d||0;B.push(this)}var hb=void 0,ib={};
|
||||
function Sa(a,b){function c(){b(100===d)&&(e=setTimeout(c,d),d=100)}var d=0,e=null,f=!1;a.onmousedown=function(){f||e||(d=500,c())};a.ontouchstart=function(){e||(d=500,c())};a.onmouseup=a.onmouseout=function(){e&&(clearTimeout(e),e=null)};a.ontouchend=a.ontouchcancel=function(){e&&(clearTimeout(e),e=null);f=!0}}var Ta={init:[],show:[],exit:[]},Va=!1,Wa=!1,bb=!0;function cb(a,b){if(window){var c=window[a];window[a]="function"!==typeof c?b:function(){c&&c();b()}}}function db(a){Ta.init.push(a)}
|
||||
function eb(a){if(bb)try{for(var b=0;b<a.length;b++)a[b]()}catch(c){x(""+("An unexpected exception occurred:\n\n"+c.message+"\n\nPlease send this information to support@pcjs.org. Thanks."))}}function fb(a){!bb&&a?(bb=!0,Va&&gb("init"),Wa&&gb("show")):bb=a}function gb(a){Ta[a]&&eb(Ta[a])}cb("onload",function(){Va=!0;eb(Ta.init)});cb("onpageshow",function(){Wa=!0;eb(Ta.show)});cb(Pa("Opera")||Pa("iOS")?"onunload":"onbeforeunload",function(){eb(Ta.exit)});
|
||||
function z(a,b,c,d){this.type=a;b||(b={id:"",name:""});this.id=b.id||"";this.name=b.name;this.Nc=b.comment;this.Fd=b;b=this.id.indexOf(".");0>b?this.qb=this.id:(this.rb=this.id.substr(0,b),this.qb=this.id.substr(b+1));this[a]=c;this.C={ready:!1,tb:!1,wc:!1,ma:!1,error:!1};this.ic=null;this.C.error=!1;this.D={};this.i=null;this.ra=d||0;B.push(this)}var hb=void 0,ib={};
|
||||
if(window){hb||(hb=window.location.search.substr(1));for(var jb,kb=/\+/g,lb=/([^&=]+)=?([^&]*)/g;jb=lb.exec(hb);)ib[decodeURIComponent(jb[1].replace(kb," "))]=decodeURIComponent(jb[2].replace(kb," "))}function mb(a){function b(){}if(window){if(!a)throw new TypeError;if(Object.create)return Object.create(a);var c=typeof a;if("object"!==c&&"function"!==c)throw new TypeError;}b.prototype=a;return new b}
|
||||
function E(a,b){b||(b=z);a.prototype=mb(b.prototype);a.prototype.constructor=a;a.prototype.parent=b.prototype}if(window){window.PCjs||(window.PCjs={});var nb=window.PCjs.Machines||(window.PCjs.Machines={}),B=window.PCjs.Components||(window.PCjs.Components=[])}else nb={},B=[];function ob(a,b,c){nb[a]&&b&&(nb[a][b]=c)}function pb(a){var b,c=[];a&&(a=0<(b=a.indexOf("."))?a.substr(0,b+1):"");for(b=0;b<B.length;b++){var d=B[b];a&&d.id.indexOf(a)||c.push(d)}return c}
|
||||
function qb(a){if(void 0!==a){var b;for(b=0;b<B.length;b++)if(B[b].id===a)return B[b]}return null}function rb(a,b){var c;if(void 0!==a){var d;b&&(b=0<(d=b.indexOf("."))?b.substr(0,d+1):"");for(d=0;d<B.length;d++)if(c)c==B[d]&&(c=null);else if(!(a!=B[d].type||b&&B[d].id.indexOf(b)))return B[d]}return null}function F(a){var b=null;if(a=a.getAttribute("data-value"))try{b=eval("("+a+")")}catch(c){x(c.message+" ("+a+")")}return b}
|
||||
function G(a,b){b=H(b.parentNode,"pdp11-control");for(var c=0;c<b.length;c++)for(var d=b[c].childNodes,e=0;e<d.length;e++){var f=d[e];if(1===f.nodeType){var g=f.getAttribute("class");if(g)for(var h=g.split(" "),l=0;l<h.length;l++)switch(g=h[l],g){case "pdp11-binding":(g=F(f))&&g.binding&&a.za(g.type,g.binding,f,g.value),l=h.length}}}}
|
||||
function H(a,b,c){c&&(b+="-"+c+"-object");if(a.getElementsByClassName)return a.getElementsByClassName(b);var d;c=[];a=a.getElementsByTagName("*");var e=new RegExp("(^| )"+b+"( |$)");b=0;for(d=a.length;b<d;b++)e.test(a[b].className)&&c.push(a[b]);return c}
|
||||
z.prototype={constructor:z,parent:null,toString:function(){return this.name?this.name:this.id||this.type},za:function(a,b,c){switch(b){case "clear":return this.D[b]||(this.D[b]=c,c.onclick=function(a){return function(){a.D.print&&(a.D.print.value="")}}(this)),!0;case "print":return this.D[b]||(this.gb=this.D[b]=c,c.value="",this.i=function(a){return function(b,c){8192<a.value.length&&(a.value=a.value.substr(a.value.length-4096));a.value+=(void 0!==c?c+": ":"")+(b||"")+"\n";a.scrollTop=a.scrollHeight}}(c),
|
||||
this.M=function(a){this.i(a,this.mb)}),!0;default:return!1}},log:function(){},i:function(){},status:function(a){this.i(this.mb+": "+a)},M:function(a,b,c){c=c||this.type;b||x((c?c+": ":"")+a)},Ma:function(){return this.C.la=!0},La:function(a,b){b&&(this.C.la=!1);return!0}};function I(a,b,c,d){a.j&&(!0===c||K(a,c|0))&&a.j.message(b,d)}function K(a,b){if(a.j){a===a.j?b|=0:b=b||a.pa;var c=a.j.pa&b;return!!b&&c===b||!!(c&a.j.qd)}return!1}
|
||||
function sb(a,b){if(a.C.oc)return a.C.ob=!1,a.C.oc=!1;if(a.C.error)return a.i(a.toString()+" error"),!1;a.C.ob=b;return a.C.ob}function yb(a,b){a.C.ob&&(b?a.C.oc=!0:void 0===b&&a.i(a.toString()+" busy"));return a.C.ob}function L(a,b){a.C.error||(a.C.ready=!1!==b,a.C.ready&&(b=a.ec,a.ec=null,b&&b()))}function zb(a,b){b&&(a.C.ready?b():a.ec=b);return a.C.ready}function Ab(a){return a.C.error?(a.i(a.toString()+" error"),!0):!1}function Bb(a,b){a.C.error=!0;a.M(b)}
|
||||
function sb(a,b){b=G(b.parentNode,"pdp11-control");for(var c=0;c<b.length;c++)for(var d=b[c].childNodes,e=0;e<d.length;e++){var f=d[e];if(1===f.nodeType){var g=f.getAttribute("class");if(g)for(var k=g.split(" "),l=0;l<k.length;l++)switch(g=k[l],g){case "pdp11-binding":(g=F(f))&&g.binding&&a.xa(g.type,g.binding,f,g.value),l=k.length}}}}
|
||||
function G(a,b,c){c&&(b+="-"+c+"-object");if(a.getElementsByClassName)return a.getElementsByClassName(b);var d;c=[];a=a.getElementsByTagName("*");var e=new RegExp("(^| )"+b+"( |$)");b=0;for(d=a.length;b<d;b++)e.test(a[b].className)&&c.push(a[b]);return c}
|
||||
z.prototype={constructor:z,parent:null,toString:function(){return this.name?this.name:this.id||this.type},xa:function(a,b,c){switch(b){case "clear":return this.D[b]||(this.D[b]=c,c.onclick=function(a){return function(){a.D.print&&(a.D.print.value="")}}(this)),!0;case "print":return this.D[b]||(this.jb=this.D[b]=c,c.value="",this.j=function(a){return function(b,c){8192<a.value.length&&(a.value=a.value.substr(a.value.length-4096));a.value+=(void 0!==c?c+": ":"")+(b||"")+"\n";a.scrollTop=a.scrollHeight}}(c),
|
||||
this.M=function(a){this.j(a,this.qb)}),!0;default:return!1}},log:function(){},j:function(){},status:function(a){this.j(this.qb+": "+a)},M:function(a,b,c){c=c||this.type;b||x((c?c+": ":"")+a)},La:function(){return this.C.ma=!0},Ka:function(a,b){b&&(this.C.ma=!1);return!0}};function H(a,b,c,d){a.i&&(!0===c||I(a,c|0))&&a.i.message(b,d)}function I(a,b){if(a.i){a===a.i?b|=0:b=b||a.ra;var c=a.i.ra&b;return!!b&&c===b||!!(c&a.i.Bd)}return!1}
|
||||
function tb(a,b){if(a.C.wc)return a.C.tb=!1,a.C.wc=!1;if(a.C.error)return a.j(a.toString()+" error"),!1;a.C.tb=b;return a.C.tb}function ub(a,b){a.C.tb&&(b?a.C.wc=!0:void 0===b&&a.j(a.toString()+" busy"));return a.C.tb}function K(a,b){a.C.error||(a.C.ready=!1!==b,a.C.ready&&(b=a.ic,a.ic=null,b&&b()))}function Ab(a,b){b&&(a.C.ready?b():a.ic=b);return a.C.ready}function Bb(a){return a.C.error?(a.j(a.toString()+" error"),!0):!1}function Cb(a,b){a.C.error=!0;a.M(b)}
|
||||
Array.prototype.indexOf||(Array.prototype.indexOf=function(a,b){b=b||0;for(var c=this.length;b<c;b++)if(this[b]===a)return b;return-1});Array.isArray||(Array.isArray=function(a){return"[object Array]"===Object.prototype.toString.call(a)});
|
||||
Function.prototype.bind||(Function.prototype.bind=function(a){function b(){return e.apply(this instanceof c&&a?this:a,d.concat(Array.prototype.slice.call(arguments)))}function c(){}if("function"!=typeof this)throw new TypeError("Function.prototype.bind: non-callable object");var d=Array.prototype.slice.call(arguments,1),e=this;c.prototype=this.prototype;b.prototype=new c;return b});
|
||||
var Cb="undefined"!==typeof ArrayBuffer,Db="UNKNOWN PANIC ABORT ILLEGAL RED YELLOW FAULT TRACE HALT OPCODE INTERRUPT".split(" "),Eb={48:"DL11R",52:"DL11X",56:"PC11R",60:"PC11X",64:"KW11",112:"RL11",144:"RK11"},Fb={cpu:1,trap:2,fault:4,"int":8,bus:16,memory:32,mmu:64,rom:128,device:256,panel:512,keyboard:1024,key:2048,pc11:4096,paper:4096,disk:8192,read:16384,write:32768,rk11:65536,rl11:131072,dl11:262144,serial:262144,kw11:524288,timer:524288,speaker:16777216,computer:33554432,log:268435456,warn:536870912,
|
||||
buffer:1073741824,halt:-2147483648};function Gb(a){z.call(this,"Panel",a,Gb,512);this.Da=this.v=this.kb=this.Db=this.A=this.F=0;this.I=this.K=this.H=!1;this.L=Hb;this.g={};this.f={START:[1,1,!0,!1,this.Gd],STEP:[1,1,!1,!1,this.Hd],ENABLE:[1,1,!1,!1,this.Cd],CONT:[1,1,!0,!1,this.Ad],DEP:[0,0,!0,!1,this.Bd],EXAM:[1,1,!0,!1,this.Dd],LOAD:[1,1,!0,!1,this.Fd],TEST:[0,0,!0,!1,this.Ed]};for(a=0;22>a;a++)this.f["S"+a]=[0,0,!1,!1,this.Id,a]}E(Gb);var Hb=7;function Ib(a,b){return a.f[b]&&a.f[b][1]}k=Gb.prototype;
|
||||
k.reset=function(){this.stop()};
|
||||
k.za=function(a,b,c,d){if(this.B&&this.B.za(a,b,c,d)||this.b&&this.b.za(a,b,c,d)||this.j&&this.j.za(a,b,c,d))return!0;switch(b){case "R0":case "R1":case "R2":case "R3":case "R4":case "R5":case "R6":case "R7":case "NF":case "ZF":case "VF":case "CF":case "PS":return this.D[b]=c,this.F++,!0;default:return"led"==a||"rled"==a?(this.D[b]=c,this.g[b]=d?1:0,this.F++,!0):"switch"==a?(void 0===this.f[b]&&(this.f[b]=[d?1:0,d?1:0]),this.D[b]=c,a=c.parentElement||c,a=a.parentElement||a,a.onmousedown=function(a,
|
||||
b){return function(){Jb(a,b)}}(this,b),a.onmouseup=a.onmouseout=function(a,b){return function(){Kb(a,b)}}(this,b),a.ontouchstart=function(a,b){return function(c){Jb(a,b);c.preventDefault()}}(this,b),a.ontouchend=function(a,b){return function(){Kb(a,b)}}(this,b),!0):this.parent.za.call(this,a,b,c,d)}};k.Ia=function(a,b,c,d){this.B=a;this.w=b;this.b=c;this.j=d;Lb(b,this,Mb);Nb(b,this.reset.bind(this));Ob(this);Pb(this)};k.Ma=function(a,b){b||(Qb(),this.reset());return!0};k.La=function(){return!0};
|
||||
function Rb(a,b,c){if(a=a.D[b])a.style.backgroundColor=c?"#ff0000":"#000000"}function Ob(a,b){for(var c in a.g)Rb(a,c,null!=b?b:a.g[c])}function Sb(a,b,c){if(a=a.D[b])a.style.marginTop=c?"0px":"20px",a.style.backgroundColor=c?"#00ff00":"#228B22"}function Pb(a){for(var b in a.f)Sb(a,b,a.f[b][1])}function Tb(a,b,c,d){a.D[b]&&(void 0===c&&(Bb(a,"Value for "+b+" is invalid"),a.b.aa()),c=8==(a.j&&a.j.ma||8)?p(c,d):q(c,d),a.D[b].textContent!=c&&(a.D[b].textContent=c))}
|
||||
function Jb(a,b){var c=a.f[b];Sb(a,b,c[1]=1-c[1]);c[3]=!0;c[4]&&c[4].call(a,c[1],c[5]);"STEP"!=b&&(a.I="DEP"==b,a.K="EXAM"==b)}function Kb(a,b){var c=a.f[b];c[2]&&c[3]&&(Sb(a,b,c[1]=c[0]),c[4]&&c[4].call(a,c[1],c[5]));c[3]=!1}k.Gd=function(a){a||this.b.C.U||(a=this.b,a.w.reset(),Ub(a),Ib(this,"ENABLE")&&this.b.lb())};k.Hd=function(){};k.Cd=function(a){a||this.b.aa()};
|
||||
k.Ad=function(a){if(!a&&!this.b.C.U)if(Ib(this,"ENABLE"))this.b.lb();else{if((a=this.j)&&!yb(a,!0))sb(a,!0),a.sb(0,null),sb(a,!1);else try{var b=this.b.sb(1);0<b&&(Vb(this.b,b),Wb(this.b,b,!0),Xb(this.b,b))}catch(c){"number"!=typeof c&&Bb(this.b,c.stack||c.message)}this.stop();this.B&&this.B.Aa()}};k.Bd=function(a){if(a&&!this.b.C.U)if(this.I&&Yb(this),a=Zb(this,this.kb),this.L==Hb)$b(this.w,this.Da,a);else{var b=this.b,c=this.Da;b.K++;b.Hb(c,a);b.K--}};
|
||||
k.Dd=function(a){a||this.b.C.U||(this.K&&Yb(this),a=this.L==Hb?ac(this.w,this.Da):nc(this.b,this.Da),Zb(this,a))};k.Fd=function(a){a||this.b.C.U||oc(this,this.kb)};k.Ed=function(a){a?(this.H=!0,Ob(this,!0)):(this.H=!1,Ob(this),pc(this,0))};k.Id=function(a,b){this.kb=a?this.kb|1<<b:this.kb&~(1<<b)};function Yb(a){var b=1145>a.b.bb?8:16,c=65472<=a.Da&&a.Da<65472+b,b=c?1:2,c=c?15:a.w.Ob;Ib(a,"STEP")||(b=-b);oc(a,a.Da&~c|a.Da+b&c)}
|
||||
function oc(a,b){a.Da=b&a.w.Ob;b=a.Da;for(var c=0;22>c;c++)qc(a,"A"+c,b&1<<c)}function Zb(a,b){a.v=b&65535;b=a.v;for(var c=0;16>c;c++)qc(a,"D"+c,b&1<<c);return a.v}function qc(a,b,c){a.g[b]=c;a.H||Rb(a,b,c)}function rc(a){return void 0!==a.D.S0}function pc(a,b){if(rc(a)){a.kb=b;for(var c=0;22>c;c++)a.f["S"+c][1]=b&1<<c?1:0;Pb(a)}}k.stop=function(){oc(this,this.b.u[7])};k.vc=function(a){this.Da=a};k.setData=function(a,b){b?this.Db=a:this.v=a};k.Jd=function(a,b){return(b?this.Db:this.kb)&65535};
|
||||
k.Ke=function(a){this.Db=a};var sc={},Mb=(sc[65400]=[null,null,Gb.prototype.Jd,Gb.prototype.Ke,"CNSW"],sc);function Qb(){for(var a=!1,b=H(document,"pdp11","panel"),c=0;c<b.length;c++){var d=b[c],e=F(d),f=qb(e.id);f||(a=!0,f=new Gb(e));G(f,d);a&&L(f)}}db(Qb);
|
||||
function tc(a,b,c){z.call(this,"Bus",a,tc,16);this.b=b;this.j=c;this.N=a.busWidth||16;this.A=1<<this.N;this.Ob=this.A-1;this.Ka=uc;this.ra=Math.log2(this.Ka);this.L=this.Ka>>2;this.w=this.Ka-1;this.v=this.A/this.Ka|0;this.Ua=[];this.sa=0;this.B=!1;this.F=[];this.ld=[vc,wc,xc,yc];a=new M(this);zc(a,this.j);this.ea=Array(this.v);this.f=Array(this.v);for(b=0;b<this.v;b++)this.ea[b]=this.f[b]=a;this.Ha=this.A-uc;Ac(this,this.Ha,uc,Bc,this);this.K=this.I=(this.Ha&this.Ob)>>>this.ra;this.H=0;this.g=this.Ob;
|
||||
L(this)}E(tc);var uc=8192,Cc=uc-1;function vc(a,b){var c=-1,d=this.controller,e=d.Ua[a],f=b&65535;e?e[0]?c=e[0](f):e[2]&&(c=f&1?e[2](f&-2)>>8:e[2](f)&255):f&1&&(e=d.Ua[a&-2])&&(e[2]?c=e[2](f&-2)>>8:e[0]&&(c=e[0](f)));if(0<=c)return this.j&&K(this.j,16|e[5])&&I(this.j,e[4]+".readByte("+N(this.j,b)+"): "+N(this.j,c),!0,!d.sa),c;d.Sa(b,16,3);c=255;this.j&&K(this.j,16)&&I(this.j,"warning: unconverted read access to byte @"+N(this.j,b)+": "+N(this.j,c),!0,!d.sa);return c}
|
||||
function wc(a,b,c){var d=!1,e=this.controller,f=e.Ua[a],g=c&65535;if(f)if(f[1])f[1](b,g),d=!0;else{if(f[3]){a=f[2]?f[2](g,!0):0;if(g&1)f[3](a&255|b<<8,g&-2);else f[3](a&-256|b,g);d=!0}}else g&1&&(f=e.Ua[a&-2])&&(f[3]?(g&=-2,a=f[2]?f[2](g,!0):0,f[3](a&255|b<<8,g),d=!0):f[1]&&(f[1](b,g),d=!0));d?this.j&&K(this.j,16|f[5])&&I(this.j,f[4]+".writeByte("+N(this.j,c)+","+N(this.j,b)+")",!0,!e.sa):(e.Sa(c,16,5),this.j&&K(this.j,16)&&I(this.j,"warning: unconverted write access to byte @"+N(this.j,c)+": "+N(this.j,
|
||||
b),!0,!e.sa))}function xc(a,b){var c=-1,d=this.controller;a=d.Ua[a];var e=b&65535;a&&(a[2]?c=a[2](e):a[0]&&(c=a[0](e)|a[0](e+1)<<8));if(0<=c)return this.j&&K(this.j,16|a[5])&&I(this.j,a[4]+".readWord("+N(this.j,b)+"): "+N(this.j,c),!0,!d.sa),c;d.Sa(b,16,2);c=65535;this.j&&K(this.j,16)&&I(this.j,"warning: unconverted read access to word @"+N(this.j,b)+": "+N(this.j,c),!0,!d.sa);return c}
|
||||
function yc(a,b,c){var d=!1,e=this.controller;a=e.Ua[a];var f=c&65535;a&&(a[3]?(a[3](b,f),d=!0):a[1]&&(a[1](b&255,f),a[1](b>>8,f+1),d=!0));d?this.j&&K(this.j,16|a[5])&&I(this.j,a[4]+".writeWord("+N(this.j,c)+","+N(this.j,b)+")",!0,!e.sa):(e.Sa(c,16,4),this.j&&K(this.j,16)&&I(this.j,"warning: unconverted write access to word @"+N(this.j,c)+": "+N(this.j,b),!0,!e.sa))}
|
||||
function Dc(a,b){if(b!=a.H){for(var c=0;c<a.v;c++)a.f[c]=a.ea[c];a.H=0;a.g=a.Ob;b&&(a.H=b,b=1<<b,a.g=b-1,b-=uc,a.K=(b&a.g)>>>a.ra,a.f[a.K]=a.ea[a.I])}}k=tc.prototype;k.reset=function(){for(var a=0;a<this.F.length;a++)this.F[a]();Dc(this,16)};k.Ma=function(a,b){b||this.reset();return!0};
|
||||
function Ac(a,b,c,d,e){for(var f=b,g=c,h=f>>>a.ra;0<g&&h<a.ea.length;){var l=a.ea[h],m=h*a.Ka,n=a.Ka-(f-m);n>g&&(n=g);if(!e&&l&&l.size){if(l.type==d){if(f+g<=l.G)return l.Ub+=l.G-f,l.G=f,!0;if(f>=l.G+l.Ub){n=l.size-(f-m);n>g&&(n=g);l.Ub=f-l.G+n;f=m+a.Ka;g-=n;h++;continue}}return Ec(1,f,g)}f=new M(a,f,n,a.Ka,d,e);zc(f,a.j,l);a.ea[h++]=f;f=m+a.Ka;g-=n}return 0>=g?(a.status((c>>10)+"Kb "+Fc[d]+" at "+p(b)),!0):Ec(2,b,c)}k.Ab=function(a){return this.f[(a&this.g)>>>this.ra].gc(a&this.w,a)};
|
||||
k.xa=function(a){return this.f[(a&this.g)>>>this.ra].ya(a&this.w,a)};k.Tb=function(a,b){this.f[(a&this.g)>>>this.ra].jc(a&this.w,b,a)};k.Gb=function(a,b){this.f[(a&this.g)>>>this.ra].Hb(a&this.w,b,a)};function Gc(a,b){return a.ea[(b&a.Ob)>>>a.ra]}function ac(a,b){a.B=!1;a.sa++;b=Gc(a,b).K(b&a.w,b);a.sa--;return b}function Hc(a,b,c){a.B=!1;a.sa++;Gc(a,b).H(b&a.w,c&255,b);a.sa--}function $b(a,b,c){a.B=!1;a.sa++;Gc(a,b).N(b&a.w,c&65535,b);a.sa--}
|
||||
function Ic(a){for(var b=0,c=[],d=0;d<a.v;d++){var e=a.ea[d];if(e.hb||e.vd){c[b++]=d;var f=b++;if(e=e.save()){for(var g=0,h=0,l=[];g<e.length;){for(var m=e[g],n=g+1;n<e.length&&e[n]===m;)n++;l[h++]=n-g;l[h++]=m;g=n}l.length<e.length&&(e=l)}c[f]=e}}return c}function Jc(a){for(var b=Kc,c=0,d=0;d<a.ea.length;d++){var e=a.ea[d];e.type==b&&(c=e.G+e.Ub)}return c}
|
||||
function Lc(a,b,c,d,e,f,g,h,l){for(var m=b==c?-1:0;b<=c;b+=2){var n=b&Cc;if(void 0!==a.Ua[n])return x("I/O address already registered: "+q(b,8,!0)),!1;var r=l||"unknown";r&&0<=m&&(r+=m++);a.Ua[n]=[d,e,f,g,r,h||16,!1]}return!0}
|
||||
function Lb(a,b,c,d){for(var e in c){var f=+e+(d||0),g=c[e];if(!(g[6]&&g[6]>a.b.bb)){var h=g[0]?g[0].bind(b):null,l=g[1]?g[1].bind(b):null,m=g[2]?g[2].bind(b):null,n=g[3]?g[3].bind(b):null;65472<=f&&65487>=f&&(!h&&m&&(h=function(a){return function(b){return a(b)&255}.bind(b)}(m)),!l&&n&&(l=function(a){return function(b,c){return a(b,c)}.bind(b)}(n)));for(var r=g[4],u=g[5]||1,t=0;t<u;t++,f+=2)if(r&&1<u&&(r=g[4]+t),!Lc(a,f,f,h,l,m,n,g[7]||b.pa,r||b.mb))return!1}}return!0}
|
||||
k.fc=function(a){var b=null;a>=this.Ha&&(a=this.Ua[a&Cc])&&(b=a[4]);return b};function Nb(a,b){a.F.push(b)}k.Sa=function(a,b,c){this.B=!0;this.sa||(this.j&&K(this.j,4)&&I(this.j,"memory fault ("+c+") on "+N(this.j,a),!0,!0),b&&(this.b.oa|=b),this.b.ua(4,0,a))};function Mc(a){var b=a.B;a.B=!1;return b}function Ec(a,b,c){x("Memory block error ("+a+": "+q(b)+","+q(c)+")");return!1}function O(a){z.call(this,"Device",a,O,256);this.f={Dg:0,wc:-1}}E(O);k=O.prototype;
|
||||
k.Ia=function(a,b,c,d){this.w=b;this.B=a;this.b=c;this.j=d;var e=this;this.f.wc=Nc(c,function(){e.f.Nb|=128;e.f.Nb&64&&Oc(e.b,e.f.Mb);e.B&&e.B.Aa(1);Pc(e.b,e.f.wc,1E3/60)});this.f.Mb=Qc(c,64,6,524288);Lb(b,this,Rc);Nb(b,this.reset.bind(this));d&&$c(d,64,function(a){var b=e.b;P(e,"KIPDR",b.R[0],0,a[0]);P(e,"KDPDR",b.R[0],8,a[0]);P(e,"KIPAR",b.ga[0],0,a[0]);P(e,"KDPAR",b.ga[0],8,a[0],!0);P(e,"SIPDR",b.R[1],0,a[0]);P(e,"SDPDR",b.R[1],8,a[0]);P(e,"SIPAR",b.ga[1],0,a[0]);P(e,"SDPAR",b.ga[1],8,a[0],!0);
|
||||
P(e,"UIPDR",b.R[3],0,a[0]);P(e,"UDPDR",b.R[3],8,a[0]);P(e,"UIPAR",b.ga[3],0,a[0]);P(e,"UDPAR",b.ga[3],8,a[0],!0);b.Na&32&&P(e,"UNIMAP",b.Fb,-1,a[0])});L(this)};function P(a,b,c,d,e,f){a=a.j;if(!(e&&0>b.indexOf(e.toUpperCase()))){e=8;var g="",h=!1,l=0,m=8;0>d&&(e=c.length,d=0,h=!0,m=l=4);for(var n=0;n<e;n++)n%m||(g&&(g+="\n"),g+=b+(h?"["+p(n,2)+"]":"")+":"),g+=" "+N(a,c[d+n],l);a.i(g+(f?"\n":""))}}k.reset=function(){this.f.Nb=128;Pc(this.b,this.f.wc,1E3/60,!0)};k.Qd=function(){return this.f.Nb};
|
||||
k.Re=function(a){this.f.Nb=a&192;this.f.Nb&64||ad(this.b,this.f.Mb)};k.Sd=function(){return bd(this.b)};k.Te=function(a){cd(this.b,a&-129|this.b.Ea&128)};k.Td=function(){return dd(this.b)};k.Ud=function(){return ed(this.b)};k.Vd=function(){return this.b.Na};k.Ue=function(a){fd(this.b,a)};k.Ce=function(a){a=a>>1&63;var b=this.b.Fb[a>>1];return a&1?b>>16:b&65535};k.Df=function(a,b){b=b>>1&63;var c=b>>1;this.b.Fb[c]=b&1?this.b.Fb[c]&65535|(a&63)<<16:this.b.Fb[c]&-65536|a&65534};
|
||||
k.ve=function(a){return this.b.R[1][a>>1&7]};k.wf=function(a,b){this.b.R[1][b>>1&7]=a&65295};k.te=function(a){return this.b.R[1][(a>>1&7)+8]};k.uf=function(a,b){this.b.R[1][(b>>1&7)+8]=a&65295};k.ue=function(a){return this.b.ga[1][a>>1&7]};k.vf=function(a,b){b=b>>1&7;this.b.ga[1][b]=a;this.b.R[1][b]&=65295};k.se=function(a){return this.b.ga[1][(a>>1&7)+8]};k.tf=function(a,b){b=(b>>1&7)+8;this.b.ga[1][b]=a;this.b.R[1][b]&=65295};k.Pd=function(a){return this.b.R[0][a>>1&7]};
|
||||
k.Qe=function(a,b){this.b.R[0][b>>1&7]=a&65295};k.Nd=function(a){return this.b.R[0][(a>>1&7)+8]};k.Oe=function(a,b){this.b.R[0][(b>>1&7)+8]=a&65295};k.Od=function(a){return this.b.ga[0][a>>1&7]};k.Pe=function(a,b){b=b>>1&7;this.b.ga[0][b]=a;this.b.R[0][b]&=65295};k.Md=function(a){return this.b.ga[0][(a>>1&7)+8]};k.Ne=function(a,b){b=(b>>1&7)+8;this.b.ga[0][b]=a;this.b.R[0][b]&=65295};k.Be=function(a){return this.b.R[3][a>>1&7]};k.Cf=function(a,b){this.b.R[3][b>>1&7]=a&65295};
|
||||
k.ze=function(a){return this.b.R[3][(a>>1&7)+8]};k.Af=function(a,b){this.b.R[3][(b>>1&7)+8]=a&65295};k.Ae=function(a){return this.b.ga[3][a>>1&7]};k.Bf=function(a,b){b=b>>1&7;this.b.ga[3][b]=a;this.b.R[3][b]&=65295};k.ye=function(a){return this.b.ga[3][(a>>1&7)+8]};k.zf=function(a,b){b=(b>>1&7)+8;this.b.ga[3][b]=a;this.b.R[3][b]&=65295};k.Rb=function(a){a&=7;return this.b.O&2048?this.b.cb[a]:this.b.u[a]};k.Vb=function(a,b){b&=7;this.b.O&2048?this.b.cb[b]=a:this.b.u[b]=a};
|
||||
k.$d=function(){return this.b.O&49152?this.b.Oa[0]:this.b.u[6]};k.Ze=function(a){this.b.O&49152?this.b.Oa[0]=a:this.b.u[6]=a};k.ce=function(){return this.b.u[7]};k.bf=function(a){this.b.u[7]=a};k.Sb=function(a){a&=7;return this.b.O&2048?this.b.u[a]:this.b.cb[a]};k.Wb=function(a,b){b&=7;this.b.O&2048?this.b.u[b]=a:this.b.cb[b]=a};k.ae=function(){return 1==(this.b.O&49152)>>14?this.b.u[6]:this.b.Oa[1]};k.$e=function(a){1==(this.b.O&49152)>>14?this.b.u[6]=a:this.b.Oa[1]=a};
|
||||
k.be=function(){return 3==(this.b.O&49152)>>14?this.b.u[6]:this.b.Oa[3]};k.af=function(a){3==(this.b.O&49152)>>14?this.b.u[6]=a:this.b.Oa[3]=a};k.Ld=function(a){return this.b.tc[a-65504>>1]};k.Me=function(a,b){this.b.tc[b-65504>>1]=a};k.Uc=function(a){return 65520==a?(Jc(this.w)>>6)-1:0};k.Xc=function(){};k.xe=function(){return 1};k.yf=function(){};k.Kd=function(){return this.b.oa};k.Le=function(){this.b.oa=0};k.Rd=function(){return this.b.sc};k.Se=function(a,b){b&1||(a&=255);this.b.sc=a};
|
||||
k.Wd=function(a,b){return b?0:this.b.Eb};k.Ve=function(a){gd(this.b,a)};k.we=function(a,b){return b?0:this.b.jb&65280};k.xf=function(a){this.b.jb=a|255};k.Zd=function(){return hd(this.b)};k.Ye=function(a){id(this.b,a)};k.Wc=function(a,b){K(this)&&I(this,"writeIgnored("+p(b)+"): "+p(a),!0,!0)};
|
||||
var Q={},Rc=(Q[61568]=[null,null,O.prototype.Ce,O.prototype.Df,"UNIMAP",64,1170],Q[62592]=[null,null,O.prototype.ve,O.prototype.wf,"SIPDR",8,1145,64],Q[62608]=[null,null,O.prototype.te,O.prototype.uf,"SDPDR",8,1145,64],Q[62624]=[null,null,O.prototype.ue,O.prototype.vf,"SIPAR",8,1145,64],Q[62640]=[null,null,O.prototype.se,O.prototype.tf,"SDPAR",8,1145,64],Q[62656]=[null,null,O.prototype.Pd,O.prototype.Qe,"KIPDR",8,1145,64],Q[62672]=[null,null,O.prototype.Nd,O.prototype.Oe,"KDPDR",8,1145,64],Q[62688]=
|
||||
[null,null,O.prototype.Od,O.prototype.Pe,"KIPAR",8,1145,64],Q[62704]=[null,null,O.prototype.Md,O.prototype.Ne,"KDPAR",8,1145,64],Q[62798]=[null,null,O.prototype.Vd,O.prototype.Ue,"MMR3",1,1145,64],Q[65382]=[null,null,O.prototype.Qd,O.prototype.Re,"LKS"],Q[65402]=[null,null,O.prototype.Sd,O.prototype.Te,"MMR0",1,1145,64],Q[65404]=[null,null,O.prototype.Td,O.prototype.Wc,"MMR1",1,1145,64],Q[65406]=[null,null,O.prototype.Ud,O.prototype.Wc,"MMR2",1,1145,64],Q[65408]=[null,null,O.prototype.Be,O.prototype.Cf,
|
||||
"UIPDR",8,1145,64],Q[65424]=[null,null,O.prototype.ze,O.prototype.Af,"UDPDR",8,1145,64],Q[65440]=[null,null,O.prototype.Ae,O.prototype.Bf,"UIPAR",8,1145,64],Q[65456]=[null,null,O.prototype.ye,O.prototype.zf,"UDPAR",8,1145,64],Q[65472]=[null,null,O.prototype.Rb,O.prototype.Vb,"R0SET0"],Q[65473]=[null,null,O.prototype.Rb,O.prototype.Vb,"R1SET0"],Q[65474]=[null,null,O.prototype.Rb,O.prototype.Vb,"R2SET0"],Q[65475]=[null,null,O.prototype.Rb,O.prototype.Vb,"R3SET0"],Q[65476]=[null,null,O.prototype.Rb,
|
||||
O.prototype.Vb,"R4SET0"],Q[65477]=[null,null,O.prototype.Rb,O.prototype.Vb,"R5SET0"],Q[65478]=[null,null,O.prototype.$d,O.prototype.Ze,"R6KERNEL"],Q[65479]=[null,null,O.prototype.ce,O.prototype.bf,"R7KERNEL"],Q[65480]=[null,null,O.prototype.Sb,O.prototype.Wb,"R0SET1",1,1145],Q[65481]=[null,null,O.prototype.Sb,O.prototype.Wb,"R1SET1",1,1145],Q[65482]=[null,null,O.prototype.Sb,O.prototype.Wb,"R2SET1",1,1145],Q[65483]=[null,null,O.prototype.Sb,O.prototype.Wb,"R3SET1",1,1145],Q[65484]=[null,null,O.prototype.Sb,
|
||||
O.prototype.Wb,"R4SET1",1,1145],Q[65485]=[null,null,O.prototype.Sb,O.prototype.Wb,"R5SET1",1,1145],Q[65486]=[null,null,O.prototype.ae,O.prototype.$e,"R6SUPER",1,1145],Q[65487]=[null,null,O.prototype.be,O.prototype.af,"R6USER",1,1145],Q[65504]=[null,null,O.prototype.Ld,O.prototype.Me,"CTRL",8,1170],Q[65520]=[null,null,O.prototype.Uc,O.prototype.Xc,"LSIZE",1,1170],Q[65522]=[null,null,O.prototype.Uc,O.prototype.Xc,"HSIZE",1,1170],Q[65524]=[null,null,O.prototype.xe,O.prototype.yf,"SYSID",1,1170],Q[65526]=
|
||||
[null,null,O.prototype.Kd,O.prototype.Le,"CPUERR",1,1170],Q[65528]=[null,null,O.prototype.Rd,O.prototype.Se,"MB",1,1170],Q[65530]=[null,null,O.prototype.Wd,O.prototype.Ve,"PIR"],Q[65532]=[null,null,O.prototype.we,O.prototype.xf,"SL"],Q[65534]=[null,null,O.prototype.Zd,O.prototype.Ye,"PSW"],Q);
|
||||
db(function(){for(var a=H(document,"pdp11","device"),b=0;b<a.length;b++){var c,d=a[b];c=F(d);switch(c.type){case "default":c=new O(c);G(c,d);break;case "pc11":c=new jd(c);G(c,d);break;case "rl11":c=new R(c);G(c,d);break;case "rk11":c=new T(c),G(c,d)}}});var kd;if(Cb){var ld=new ArrayBuffer(2);(new DataView(ld)).setUint16(0,256,!0);kd=256===(new Uint16Array(ld))[0]}else kd=!1;var md=kd;
|
||||
function M(a,b,c,d,e,f){this.w=a;this.id=nd+=2;this.b=null;this.G=b;this.Ub=c;this.size=d||0;this.type=e||od;this.f=e==pd;this.controller=null;zc(this);this.hb=this.vd=!1;if(this.size)if(f)this.controller=f,a=[null,0],this.b=a[0],qd(this,f.ld);else if(Cb)this.A=new ArrayBuffer(this.size),this.F=new DataView(this.A,0,this.size),this.D=new Uint8Array(this.A,0,this.size),this.P=new Uint16Array(this.A,0,this.size>>1),this.b=new Int32Array(this.A,0,this.size>>2),qd(this,md?rd:sd);else{a=this.b=Array(this.size>>
|
||||
2);for(f=0;f<a.length;f++)a[f]=0;qd(this,td)}else qd(this)}var od=0,Kc=1,pd=2,Bc=4,Fc=["NONE","RAM","ROM","VID","H/W"],nd=0;
|
||||
M.prototype={constructor:M,parent:null,save:function(){var a,b;if(this.controller)a=null;else if(Cb)for(a=Array(this.size>>2),b=0;b<a.length;b++)a[b]=this.F.getInt32(b<<2,!0);else a=this.b;return a},restore:function(a){if(this.controller)return!a;if(a&&this.size==a.length<<2){var b;if(Cb)for(b=0;b<a.length;b++)this.F.setInt32(b<<2,a[b],!0);else this.b=a;return this.hb=!0}return!1},xb:function(a,b){b?this.g++||ud(this,vd,!1):this.B++||wd(this,vd,!1)},S:function(a,b){this.j&&K(this.j,32)&&I(this.j,
|
||||
"attempt to read invalid address "+N(this.j,b),!0);this.w.Sa(b,32,2);return 255},v:function(a,b,c){this.j&&K(this.j,32)&&I(this.j,"attempt to write "+N(this.j,b)+" to invalid addresses "+N(this.j,c),!0);this.w.Sa(c,32,4)},T:function(a,b){return this.gc(a++,b++)|this.gc(a,b)<<8},L:function(a,b,c){this.jc(a++,b&255,c++);this.jc(a,b>>8,c)},ca:function(a){return this.b[a>>2]>>>((a&3)<<3)&255},va:function(a,b){a&1&&this.w.Sa(b,64,2);b=a>>2;a=(a&3)<<3;var c=this.b[b]>>a;return 24>a?c&65535:c&255|(this.b[b+
|
||||
1]&255)<<8},Qa:function(a,b){var c=a>>2;a=(a&3)<<3;this.b[c]=this.b[c]&~(255<<a)|b<<a;this.hb=!0},eb:function(a,b,c){a&1&&this.w.Sa(c,64,4);c=a>>2;a=(a&3)<<3;24>a?this.b[c]=this.b[c]&~(65535<<a)|b<<a:(this.b[c]=this.b[c]&16777215|b<<24,c++,this.b[c]=this.b[c]&-256|b>>8);this.hb=!0},mb:function(a,b){if(this.j&&null!=this.G){var c=this.j;xd(c,this.G+a,1,c.N)&&c.aa(!0)}return this.I(a,b)},ma:function(a,b){if(this.j&&null!=this.G){var c=this.j;xd(c,this.G+a,2,c.N)&&c.aa(!0)}return this.K(a,b)},Ba:function(a,
|
||||
b,c){if(this.j&&null!=this.G){var d=this.j;xd(d,this.G+a,1,d.F)&&d.aa(!0)}this.f?this.v(a,b,c):this.H(a,b,c)},Ya:function(a,b,c){if(this.j&&null!=this.G){var d=this.j;xd(d,this.G+a,2,d.F)&&d.aa(!0)}this.f?this.v(a,b,c):this.N(a,b,c)},Y:function(a){return this.D[a]},nb:function(a,b){a=this.D[a];this.j&&K(this.j,32)&&I(this.j,"Memory.readByte("+N(this.j,b)+"): "+N(this.j,a),!0);return a},da:function(a,b){a&1&&this.w.Sa(b,64,2);return this.F.getUint16(a,!0)},na:function(a,b){a&1&&this.w.Sa(b,64,2);a=
|
||||
this.P[a>>1];this.j&&K(this.j,32)&&I(this.j,"Memory.readWord("+N(this.j,b)+"): "+N(this.j,a),!0);return a},wa:function(a,b){this.D[a]=b;this.hb=!0},Ga:function(a,b,c){this.D[a]=b;this.hb=!0;this.j&&K(this.j,32)&&I(this.j,"Memory.writeByte("+N(this.j,c)+","+N(this.j,b)+")",!0)},Ta:function(a,b,c){a&1&&this.w.Sa(c,64,4);this.F.setUint16(a,b,!0);this.hb=!0},Za:function(a,b,c){a&1&&this.w.Sa(c,64,4);this.P[a>>1]=b;this.hb=!0;this.j&&K(this.j,32)&&I(this.j,"Memory.writeWord("+N(this.j,c)+","+N(this.j,
|
||||
b)+")",!0)}};function zc(a,b,c){a.j=b;a.B=a.g=0;c&&((a.B=c.B)&&wd(a,vd,!1),(a.g=c.g)&&ud(a,vd,!1))}function yd(a,b){b?--a.g||(a.jc=a.f?a.v:a.H,a.Hb=a.f?a.L:a.N):--a.B||(a.gc=a.I,a.ya=a.K)}function ud(a,b,c){c&&a.g||(a.jc=!a.f&&b[1]||a.v,a.Hb=!a.f&&b[3]||a.L);if(c||void 0===c)a.H=b[1]||a.v,a.N=b[3]||a.L}function wd(a,b,c){c&&a.B||(a.gc=b[0]||a.S,a.ya=b[2]||a.T);if(c||void 0===c)a.I=b[0]||a.S,a.K=b[2]||a.T}function qd(a,b){b||(b=zd);wd(a,b,void 0);ud(a,b,void 0)}
|
||||
var zd=[],td=[M.prototype.ca,M.prototype.Qa,M.prototype.va,M.prototype.eb],vd=[M.prototype.mb,M.prototype.Ba,M.prototype.ma,M.prototype.Ya];if(Cb)var sd=[M.prototype.Y,M.prototype.wa,M.prototype.da,M.prototype.Ta],rd=[M.prototype.nb,M.prototype.Ga,M.prototype.na,M.prototype.Za];
|
||||
function Ad(a,b){z.call(this,"CPU",a,Ad,1);b=a.cycles||b;var c=a.multiplier||1;this.Xb=0;this.ub=b;this.pb=c;this.lc=Math.round(this.ub/1E4)/100;this.Cb=this.lc*this.pb;this.C.U=!1;this.C.ic=!1;this.C.fb=a.autoStart;this.C.Lb=!1;this.Zb=this.Ga=0;this.$b=a.csStart;this.Pb=a.csInterval;this.Qb=a.csStop;this.N=[];this.Jc=this.Ie.bind(this);L(this)}E(Ad);var Bd=["power","reset"];k=Ad.prototype;
|
||||
k.Ia=function(a,b,c,d){this.B=a;this.w=b;this.j=d;this.v=a.v;for(a=0;a<Bd.length;a++)(b=this.D[Bd[a]])&&this.B.za(null,Bd[a],b);L(this)};k.zc=function(){};k.reset=function(){};k.save=function(){return null};k.restore=function(){return!1};
|
||||
k.Ma=function(a,b){var c=Cd(this.B,"autoStart");null!=c?this.C.fb="true"==c?!0:"false"==c?!1:!!c:null==this.C.fb&&(this.C.fb=!this.j&&void 0===this.D.run);if(!b){this.zc();if(a&&this.restore){Dd(this);if(!this.restore(a))return!1;Ed(this)}else this.reset();this.j?(a=this.j,b=this.C.fb,a.Za=!0,a.i("Type ? for help with PDPjs Debugger commands"),Fd(a),b||a.rb(),a.Ta&&(b=a.Ta,a.Ta=null,Gd(a,b))):this.i("No debugger detected");this.C.fb||this.i("CPU will not be auto-started, click Run to start")}return!0};
|
||||
k.La=function(a){return a?this.save():!0};k.fb=function(){return this.C.U?!0:this.C.fb?(this.lb(),!0):!1};k.Pc=function(){return 0};function Ed(a){void 0===a.$b&&(a.$b=0);void 0===a.Pb&&(a.Pb=-1);void 0===a.Qb&&(a.Qb=-1);a.C.Lb=0<=a.$b&&0<a.Pb;a.C.Lb&&(a.Zb=0,a.Ga=a.$b-a.na)}function Xb(a,b){if(a.C.Lb){var c=!1;a.Zb=a.Zb+a.Pc()|0;a.Ga-=b;0>=a.Ga&&(a.Ga+=a.Pb,c=!0);0<=a.Qb&&a.Qb<=Hd(a)&&(a.Pb=a.Qb=-1,Ed(a),a.aa(),c=!0);c&&a.i(Hd(a)+" cycles: checksum="+q(a.Zb))}}
|
||||
k.za=function(a,b,c){var d=this;switch(b){case "power":case "reset":return this.D[b]=c,!0;case "run":return this.D[b]=c,c.onclick=function(){var a;if(a=d.B)if(a=d.B,a.C.la)a=!0;else{var b=null,c,h=pb(a.id);for(c=0;c<h.length&&(b=h[c],b===a||b.C.ready);c++);if(c==h.length)for(c=0;c<h.length&&(b=h[c],b===a||b.C.la);c++);c==h.length&&(b=a);x("The "+b.type+" component ("+b.id+") is not "+(b.C.ready?"powered yet":"ready yet"+(b.ec?" (waiting for notification)":""))+".");a=!1}a&&(d.C.U?d.aa():d.lb())},
|
||||
!0;case "speed":return this.D[b]=c,!0;case "setSpeed":return this.D[b]=c,c.onclick=function(){Id(d,d.pb<<1,!0)},c.textContent=this.Cb.toFixed(2)+"Mhz",!0}return!1};k.Aa=function(a){this.B&&this.B.Aa(a)};function Wb(a,b,c){a.na+=b;c&&(a.ma=a.b=a.L=0)}function Jd(a,b){var c=1;b&&1<a.pb&&a.Ba&&(c=a.Ba/a.lc);a.Hc=Math.round(1E3/30);a.vb=Math.floor(a.ub/30*c);b||(a.Qa=a.vb);a.mc=0}function Hd(a){return a.na+a.Y+a.ma-a.b}function Dd(a){a.Ba=0;a.Ic=0;a.na=a.Y=a.ma=a.b=a.L=0;Ed(a);Id(a,1)}
|
||||
function Id(a,b,c){var d=!1;if(void 0!==b){.8>a.Ba/a.Cb?b=1:d=!0;a.pb=b;b=a.lc*a.pb;if(a.Cb!=b){a.Cb=b;b=a.Cb.toFixed(2)+"Mhz";var e=a.D.setSpeed;e&&(e.textContent=b);a.i("target speed: "+b)}c&&a.B&&a.B.rb()}Wb(a,a.Y);a.Y=0;a.T=Ca();a.da=0;Jd(a);return d}function Nc(a,b){var c=a.N.length;a.N.push([-1,b]);return c}function Pc(a,b,c,d){0<=b&&b<a.N.length&&(d||0>a.N[b][0])&&(c=a.ub*a.pb/1E3*c|0,a.C.U&&(c+=Kd(a)),a.N[b][0]=c)}
|
||||
function Ld(a,b){for(var c=a.N.length-1;0<=c;c--){var d=a.N[c];0>d[0]||b>d[0]&&(b=d[0])}return b}function Vb(a,b){for(var c=a.N.length-1;0<=c;c--){var d=a.N[c];0>d[0]||(d[0]-=b,0>=d[0]&&(d[0]=-1,d[1]()))}}function Kd(a,b){var c=a.ma-=a.b;a.b=a.L=0;b&&(a.ma=0);return c}
|
||||
k.Ie=function(){if(this.C.U){this.mc>=this.ub&&Jd(this,!0);this.Za=0;this.eb=Ca();if(this.da){var a=this.eb-this.da;a>this.Hc&&(this.T+=a,this.T>this.eb&&(this.T=this.eb))}try{do{var b=Ld(this,this.C.Lb?1:this.vb);try{this.sb(b)}catch(e){if("number"!=typeof e)throw e;}b=Kd(this,!0);this.Za+=b;this.Y+=b;Xb(this,b);Vb(this,b);this.Qa-=b;if(0>=this.Qa){this.Qa+=this.vb;15<=++this.Ic&&(this.Aa(),this.Ic=0);break}}while(this.C.U)}catch(e){this.aa();this.B&&this.B.stop(Ca(),Hd(this));Bb(this,e.stack||e.message);
|
||||
return}if(this.C.U){a=setTimeout;b=this.Jc;this.da=Ca();var c=this.Hc;this.Za&&(c=Math.round(c*this.Za/this.vb));var c=c-(this.da-this.eb),d=this.da-this.T;d&&(this.Ba=Math.round(this.Y/(10*d))/100,864E5<=d&&(this.na=0,Id(this)));if(0>c||this.Ba<this.Cb)-1E3>c&&(this.T-=c),c=0;this.mc+=this.Za;this.da+=c;a(b,c)}}};
|
||||
k.lb=function(a){if(Ab(this))return!1;if(this.C.U)return this.i(this.toString()+" busy"),!1;Id(this);this.C.U=!0;this.C.ic=!0;var b=this.D.run;b&&(b.textContent="Halt");this.B&&(a&&this.B.rb(!0),this.B.start(this.T,Hd(this)));this.j||this.status("Started");setTimeout(this.Jc,0);return!0};k.sb=function(){return 0};
|
||||
k.aa=function(a){var b=!1;if(this.C.U){Kd(this);Wb(this,this.Y);this.Y=0;this.C.U=!1;if(b=this.D.run)b.textContent="Run";this.B&&this.B.stop(Ca(),Hd(this));b=!0;this.j||this.status("Stopped")}this.C.complete=a;return b};
|
||||
function Md(a){this.bb=+a.model||1170;this.Dc=a.addrReset||0;Ad.call(this,a,6666667);this.wb=0;this.Gc=255;1120>=this.bb?(this.decode=Nd.bind(this),this.wa=this.sd,this.wb=8,this.Gc=-1,this.xc=255,this.Kc=0):(this.decode=Od.bind(this),this.wa=this.td,this.xc=~(1792|(1145>this.bb?2048:0))&65535,this.Kc=1145<=this.bb?2048:0);Pd(this);this.K=0;this.I=null;this.Yb=[];this.C.complete=!1}E(Md,Ad);k=Md.prototype;
|
||||
k.zc=function(){for(var a=192,b=0;b<this.Yb.length;b++){var c=this.Yb[b];0>c.bc&&(c.bc=a,a+=4)}};k.reset=function(){this.status("Model "+this.bb);this.C.U&&this.aa();Pd(this);Dd(this);this.C.error=!1;this.parent.reset.call(this)};
|
||||
function Pd(a){a.V=65536;a.W=32768;a.Z=65535;a.X=32768;a.O=15;a.u=[0,0,0,0,0,0,0,a.Dc,-1,-2,-3,-4,-5,-6,-7,-8];a.cb=[0,0,0,0,0,0];a.Oa=[0,0,0,0];a.A=0;a.Fc=[4,2,0,1];a.R=[[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[65535,65535,65535,65535,65535,65535,65535,65535,65535,65535,65535,65535,65535,65535,65535,65535],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0]];a.ga=[[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,
|
||||
0,0,0,0,0,0]];a.Fb=[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0];a.tc=[0,0,0,0,0,0,0,0];a.sc=0;a.J=0;a.F=a.H=0;a.g=a.f=a.kc=0;a.va=-1;Ub(a)}function Ub(a){a.Ea=0;a.Ib=0;a.Jb=0;a.Na=0;a.oa=0;a.Eb=0;a.jb=255;a.ca=0;a.Ta=0;a.Ya=0;a.S=262143;a.Kb=0;a.ta=0;a.I=null;a.w&&(Qd(a),a.kd=Jc(a.w))}function Qd(a){a.ca?(a.P=65536,a.Ha=a.Na&16?4186112:253952,a.ba=a.xd,a.ya=a.Ee,a.Hb=a.Ff,Dc(a.w,a.Na&16?22:18)):(a.P=0,a.Ha=57344,a.ba=a.wd,a.ya=a.De,a.Hb=a.Ef,Dc(a.w,16))}
|
||||
function bd(a){var b=a.Ea;b&57344||(b=b&-3199|a.Ta<<5|a.Ya<<1);return b}function cd(a,b){b&=-3073;if(a.Ea!=b){b&57344&&!(a.Ea&57344)&&(a.Ib=a.ta>>16&65535,a.Jb=a.ta&65535);a.Ea=b;a.Ta=(b&96)>>5;a.Ya=(b&30)>>1;var c=0;b&257&&(c=4,b&1&&(c|=2));a.ca!=c&&(a.ca=c,Qd(a))}}function dd(a){a.Ea&57344||(a.Ib=a.ta>>16&65535);a=a.Ib;a&65280&&(a=(a<<8|a>>8)&65535);return a}function ed(a){a.Ea&57344||(a.Jb=a.ta&65535);return a.Jb}
|
||||
function fd(a,b){1170>a.bb&&(b&=-49);a.Na!=b&&(a.Na=b,a.S=b&16?4194303:262143,Qd(a))}function Rd(a,b,c){a.Dc=b;a.w.reset();Ub(a);Sd(a,b);id(a,0);if(c){for(b=2;5>=b;b++)a.u[b]=0;a.C.U||a.lb()}else a.j?a.aa()||Fd(a.j):!1===c&&a.aa();!a.C.U&&a.v&&a.v.stop()}k.Pc=function(){return 0};
|
||||
k.save=function(){var a=new U(this);a.set(0,[this.u,this.cb,this.Oa,this.Fb,this.tc,this.oa,this.sc,this.Eb,this.jb,hd(this),this.va,this.A,this.J,this.Ea,this.Ib,this.Jb,this.Na,this.Ta,this.Ya,this.R,this.ga,this.ca,this.S,this.Kb,this.ta]);a.set(1,[this.na,this.pb]);a.set(2,Ic(this.w));return a.data()};
|
||||
k.restore=function(a){var b=a[1];this.na=b[1];Id(this,b[3]);a:{b=this.w;a=a[2];var c;for(c=0;c<a.length-1;c+=2){var d=a[c],e=a[c+1];if(e&&e.length<b.L){for(var f=0,g=Array(b.L),h=0;h<e.length-1;)for(var l=e[h++],m=e[h++];l--;)g[f++]=m;e=g}f=b.ea[d];if(!f||!f.restore(e)){x("Unable to restore memory block "+d);b=!1;break a}}b=!0}return b};function Td(a){return a.V&65536?1:0}function Ud(a){return a.W&32768?2:0}function Vd(a){return a.Z&65535?0:4}function Wd(a){return a.X&32768?8:0}
|
||||
function Xd(a,b){var c=a.u[7];a.u[7]=c+b&65535;return c}function Sd(a,b){a.u[7]=b&65535}function Qc(a,b,c,d){c={bc:b,qb:c,message:d||0,next:null};c.name=Eb[b];a.Yb.push(c);return c}function Yd(a,b){var c=a.I;if(c==b)a.I=b.next;else for(;c;){var d=c.next;if(d==b){c.next=d.next;break}c=d}a.I&&(a.J|=1)}
|
||||
function Oc(a,b){if(b!=a.I){var c=a.I;if(!c||c.qb<=b.qb)b.next=c,a.I=b;else{do{var d=c.next;if(!d||d.qb<=b.qb){b.next=d;c.next=b;break}c=d}while(c)}}a.J|=1;b.message&&K(a,b.message|8)&&I(a,"setIRQ(vector="+p(b.bc)+",priority="+b.qb+")",!0,!0)}function ad(a,b){Yd(a,b);b.message&&K(a,b.message|8)&&I(a,"clearIRQ(vector="+p(b.bc)+",priority="+b.qb+")",!0,!0)}function Zd(a){return a.J&64?(a.ua(168,64,-6),!0):a.J&32?(a.ua(4,32,-5),!0):a.J&16?(a.ua(12,16,-7),!0):!1}
|
||||
function hd(a){return a.O=a.O&63728|Wd(a)|Vd(a)|Ud(a)|Td(a)}function id(a,b){b&=a.xc;a.X=b<<12;a.Z=~b&4;a.W=b<<14;a.V=b<<16;if((b^a.O)&a.Kc)for(var c=a.cb.length;0<=--c;){var d=a.u[c];a.u[c]=a.cb[c];a.cb[c]=d}a.A=b>>14&3;c=a.O>>14&3;a.A!=c&&(a.Oa[c]=a.u[6],a.u[6]=a.Oa[a.A]);a.O=b;a.J&=-3;a.J|=a.I?2:1}function gd(a,b){if(b&=65024){var c=b>>9;do b+=34;while(c>>=1);a.J|=1}a.Eb=b}k.Fa=function(a){this.X=this.Z=a;this.W=0};k.tb=function(a,b){this.X=this.Z=this.V=a;this.W=b||0};
|
||||
function $d(a,b){a.X=a.Z=a.V=b;a.W=a.X^a.V>>1}function ae(a,b,c,d){a.X=a.Z=a.V=b;a.W=(c^d)&(d^b)}
|
||||
k.ua=function(a,b,c){if(!this.K){0>this.va?this.va=hd(this):this.A||(c=-4);-4==c&&(this.J&256&&(c=-1),this.J|=256,this.oa|=4,this.u[6]=a=4);if(-1!=c){this.ta=a|4143316992;this.A=0;var d=this.ya(a|this.P),e=this.ya(a+2&65535|this.P);id(this,e&-12289|this.va>>2&12288);ue(this,this.va);ue(this,this.u[7]);Sd(this,d)}this.b-=5;this.J&=~(b|19);this.J|=129;this.va=-1;this.ud=a;this.rd=c;-1==c&&this.aa();if(-4<=c)throw a;}};
|
||||
function ve(a){var b=we(a),c=we(a);a.O&49152&&(c=c&-225|a.O&63712);Sd(a,b);id(a,c);a.J&=-17}k.Ja=function(a){var b=a>>13&31;31>b&&(a=this.Na&32?this.Fb[b]+(a&8190)&4194302:a&-3932161);return a};k.fc=function(a){var b=[];if(this.ca){var c=this.A<<1,d=a>>13;7<d&&(c|=1);this.Na&this.Fc[this.A]||(d&=7);var e=a&8191,f=this.ga[this.A][d]<<6;a=f+e&this.S;3932160<=a&&(a=this.Ja(a));b.push(a);b.push(e);b.push(c);b.push(d&7);b.push(f);b.push(this.S)}else a&=65535,57344<=a&&(a|=this.Ha),b.push(a);return b};
|
||||
function xe(a,b,c){var d,e,f;if(!(c&a.ca))return f=b&65535,57344<=f&&(f|=a.Ha),f;d=b>>13;a.Na&a.Fc[a.A]||(d&=7);e=a.R[a.A][d];f=(a.ga[a.A][d]<<6)+(b&8191)&a.S;3932160<=f&&(f=a.Ja(f));if(a.K)return f;f>=a.kd&&f<a.Ha?(a.oa|=32,a.ua(4,0,f)):f&1&&!(c&1)&&(a.oa|=64,a.ua(4,0,f));var g=0;switch(e&7){case 1:g=4096;case 2:e|=128;c&4&&(g=8192);break;case 4:g=4096;case 5:c&4&&(g=4096);case 6:e|=c&4?192:128;break;default:g=32768}32512!=(e&32520)&&(e&8?e&32512&&(b&8128)<(e>>2&8128)&&(g|=16384):(b&8128)>(e>>2&
|
||||
8128)&&(g|=16384));a.R[a.A][d]=e;if(f!=(4194170&a.S)||a.A)a.Ta=a.A,a.Ya=d;g&&(g&57344&&(0<=a.va&&(g|=128),a.Ea&57344||(g|=a.Ea&4096|a.Ta<<5|a.Ya<<1,cd(a,a.Ea&-61695|g&61694)),a.ua(168,64,-2)),a.Ea&61440||!(f<(4191360&a.S)||f>(4194239&a.S))||(a.Ea|=4096,a.Ea&512&&(a.J|=64)));return f}function we(a){var b=a.ya(a.u[6]|a.P);a.u[6]=a.u[6]+2&65535;return b}function ue(a,b){var c=a.u[6]-2&65535;a.u[6]=c;a.ta=a.ta&65535|(a.ta&-65536)<<8|16121856;a.J&256||a.wa(4,-2,c);a.Hb(c,b)}
|
||||
function ye(a,b,c,d){var e,f,g=d&8?0:a.P;switch(b){case 0:return a.ua(4,0,-3),0;case 1:return 6==c&&a.wa(d,0,a.u[6]),a.b-=3,7==c?a.u[c]:a.u[c]|g;case 2:f=2;e=a.u[c];6==c&&a.wa(d,f,e);7!=c&&(e|=g,6>c&&d&1&&(f=1));a.b-=3;break;case 3:f=2;e=a.u[c];7!=c&&(e|=g);e=a.ya(e);e|=g;a.b-=7;break;case 4:f=-2;6>c&&d&1&&(f=-1);e=a.u[c]+f&65535;6==c&&a.wa(d,f,e);7!=c&&(e|=g);a.b-=4;break;case 5:f=-2;e=a.u[c]-2&65535;7!=c&&(e|=g);e=a.ya(e)|g;a.b-=8;break;case 6:return e=a.ya(Xd(a,2)),e=e+a.u[c]&65535,6==c&&a.wa(d,
|
||||
0,e),a.b-=6,e|g;case 7:return e=a.ya(Xd(a,2)),e=e+a.u[c]&65535,e=a.ya(e|a.P),a.b-=10,e|g}a.u[c]=a.u[c]+f&65535;a.ta=a.ta&65535|(a.ta&-65536)<<8|(f<<3&248|c)<<16;return e}k.sd=function(a,b,c){!this.A&&0>=b&&c<=this.jb&&(this.J|=32)};k.td=function(a,b,c){this.A||(65534<=c&&(c|=-65536),a&4&&c<=this.jb&&(c<=this.jb-32?this.ua(4,0,-4):(this.oa|=8,this.J|=32)))};function nc(a,b){a.K++;b=a.ya(b);a.K--;return b}k.wd=function(a,b,c){a=ye(this,a,b,c);3932160<=a&&(a=this.Ja(a));return a};
|
||||
k.xd=function(a,b,c){return xe(this,ye(this,a,b,c),c)};k.De=function(a){3932160<=a&&(a=this.Ja(a));return this.w.xa(this.Kb=a)};k.Ee=function(a){return this.w.xa(this.Kb=xe(this,a,2))};k.Ef=function(a,b){3932160<=a&&(a=this.Ja(a));this.w.Gb(this.Kb=a,b)};k.Ff=function(a,b){this.w.Gb(this.Kb=xe(this,a,4),b)};
|
||||
function ze(a,b,c){var d=a.f=b&7;(b=a.g=(b&56)>>3)?(d=ye(a,b,d,2),c&65536||61440!==(a.O&61440)&&(d&=65535),a.A=a.O>>12&3,c=a.ya(d|c&a.P),a.A=a.O>>14&3):c=6!=d||(a.O>>2&12288)===(a.O&12288)?a.u[d]:a.Oa[a.O>>12&3];return c}function Ae(a,b,c,d){a.ta=a.ta&65535|1441792;var e=a.f=b&7;(b=a.g=(b&56)>>3)?(e=ye(a,b,e,4),c&65536||(e&=65535),a.A=a.O>>12&3,e=xe(a,e|c&65536,4),a.A=a.O>>14&3,a.w.Gb(e,d)):6!=e||(a.O>>2&12288)===(a.O&12288)?a.u[e]=d:a.Oa[a.O>>12&3]=d}
|
||||
function Be(a,b){var c;b>>=6;var d=a.H=b&7;(b=a.F=(b&56)>>3)?c=a.w.Ab(a.ba(b,d,3)):c=a.u[d+a.wb]&a.Gc;return c}function Ce(a,b){b>>=6;var c=a.H=b&7;return(b=a.F=(b&56)>>3)?a.w.xa(a.ba(b,c,2)):a.u[c+a.wb]}function De(a,b){var c=a.f=b&7;b=a.g=(b&56)>>3;return ye(a,b,c,8)}function Ee(a,b){var c,d=a.f=b&7;(b=a.g=(b&56)>>3)?c=a.w.Ab(a.ba(b,d,3)):c=a.u[d]&255;return c}function Fe(a,b){var c=a.f=b&7;return(b=a.g=(b&56)>>3)?a.w.xa(a.ba(b,c,2)):a.u[c]}
|
||||
function Ge(a,b,c,d){var e=a.f=b&7;(b=a.g=(b&56)>>3)?(e=a.kc=a.ba(b,e,7),c=0>c?a.u[-c-1]&255:c,a.w.Tb(e,d.call(a,c,a.w.Ab(e))),e&1&&a.b--):(b=a.u[e],c=0>c?a.u[-c-1]&255:c,a.u[e]=b&65280|d.call(a,c,b&255))}function V(a,b,c,d){var e=a.f=b&7;(b=a.g=(b&56)>>3)?(e=a.ba(b,e,6),a.w.Gb(e,d.call(a,0>c?a.u[-c-1]:c,a.w.xa(e)))):a.u[e]=d.call(a,0>c?a.u[-c-1]:c,a.u[e])}
|
||||
function He(a,b,c,d,e){var f=a.f=b&7;(b=a.g=(b&56)>>3)?(d=a.ba(b,f,5),e.call(a,(c=0>c?a.u[-c-1]&255:c)<<8),a.w.Tb(d,c),d&1&&a.b--):(c?(c=0>c?a.u[-c-1]&255:c,a.u[f]=a.u[f]&~d|c<<24>>24&d):a.u[f]&=~d,e.call(a,c<<8))}function Ie(a,b,c,d){var e=a.f=b&7;(b=a.g=(b&56)>>3)?(e=a.ba(b,e,4),d.call(a,c=0>c?a.u[-c-1]:c),a.w.Gb(e,c)):(a.u[e]=c=0>c?a.u[-c-1]:c,d.call(a,c))}function W(a,b,c){c&&(Sd(a,a.u[7]+(b<<24>>23)),a.b-=2);a.b-=3}
|
||||
k.sb=function(a){this.C.complete=!0;var b=this.j?Je(this.j)?1:this.C.ic?-1:0:0,c=a?this.C.ic?0:1:-1;this.C.ic=!1;this.ma=this.b=a;this.J=this.J&-5|(b?4:0);do{if(this.J){if(this.J&4){if(Ke(this.j,this.u[7],c)){this.aa();break}++b||(this.J&=-5);c||c++}if(a=this.J&11)if(a=!1,this.J&2){var d=160,e=(this.Eb&224)>>5,f=this.I&&this.I.qb>e?this.I:null;f&&(d=f.bc,e=f.qb);e>(this.O&224)>>5?(this.J&8&&(Xd(this,2),this.J&=-9),this.ua(d,0,-10),e=!0):e=!1;e&&(f&&Yd(this,f),a=!0);this.I||this.Eb||(this.J&=-3)}else this.J&
|
||||
1&&this.J++;if(a){if(this.J&4&&Ke(this.j,this.u[7],c)){this.aa();break}if(0>c)break}if(this.J&112&&Zd(this)){if(this.J&4&&Ke(this.j,this.u[7],c)){this.aa();break}if(0>c)break}}this.J=this.J&15|this.O&16;a=this.ta=this.u[7];f=this.ya(a);this.u[7]=a+2&65535;this.decode(f)}while(0<this.b);return this.C.complete?this.ma-this.b:void 0===this.C.complete?0:-1};db(function(){for(var a=H(document,"pdp11","cpu"),b=0;b<a.length;b++){var c=a[b],d=F(c),d=new Md(d);G(d,c)}});
|
||||
function Le(a,b){var c=b+a;this.X=this.Z=this.V=c;this.W=(a^c)&(b^c);return c&65535}function Me(a,b){var c=b+a,d=c<<8;this.X=this.Z=this.V=d;this.W=(a<<8^d)&(b<<8^d);return c&255}function Ne(a,b){a=b<<1;$d(this,a);return a&65535}function Oe(a,b){a=b<<1;$d(this,a<<8);return a&255}function Pe(a,b){a=b&32768|b>>1|b<<16;$d(this,a);return a&65535}function Qe(a,b){a=b&128|b>>1|b<<8;$d(this,a<<8);return a&255}function Re(a,b){a=b&~a;this.Fa(a);return a}function Se(a,b){a=b&~a;this.Fa(a<<8);return a}
|
||||
function Te(a,b){a|=b;this.Fa(a);return a}function Ue(a,b){a|=b;this.Fa(a<<8);return a}function Ve(a,b){a=~b|65536;this.tb(a);return a&65535}function We(a,b){a=~b|256;this.tb(a<<8);return a&255}function Xe(a,b){this.X=this.Z=a=b-a;this.W=b&(b^a);return a&65535}function Ye(a,b){a=b-a;var c=a<<8;b<<=8;this.X=this.Z=c;this.W=b&(b^c);return a&255}function Ze(a,b){this.X=this.Z=a=b+a;this.W=a&(b^a);return a&65535}function $e(a,b){a=b+a;var c=a<<8;this.X=this.Z=c;this.W=c&(b<<8^c);return a&255}
|
||||
function af(a,b){a=-b;this.tb(a,a&b&32768);return a&65535}function bf(a,b){a=-b;this.tb(a<<8,(a&b&128)<<8);return a&255}function cf(a,b){a=b<<1|this.V>>16&1;$d(this,a);return a&65535}function df(a,b){a=b<<1|this.V>>16&1;$d(this,a<<8);return a&255}function ef(a,b){a=(this.V&65536|b)>>1|b<<16;$d(this,a);return a&65535}function ff(a,b){a=((this.V&65536)>>8|b)>>1|b<<8;$d(this,a<<8);return a&255}function gf(a,b){var c=b-a;ae(this,c,a,b);return c&65535}
|
||||
function hf(a,b){var c=b-a;ae(this,c<<8,a<<8,b<<8);return c&255}function jf(a,b){this.X=this.Z=b&65280;this.W=this.V=0;return(b<<8|b>>8)&65535}function kf(a,b){a^=b;this.Fa(a);return a&65535}function lf(a){V(this,a,Ce(this,a),Le);this.b-=this.g?9+(this.H&&6<=this.f?1:0):(this.F?5:3)+(7==this.f?2:0)}
|
||||
function mf(a){var b=Fe(this,a);a=a>>6&7;var c=this.u[a];c&32768&&(c|=4294901760);this.V=this.W=0;b&=63;if(b&32)b=64-b,16<b&&(b=16),this.V=c<<17-b,c>>=b;else if(b)if(16<b)this.W=c,c=0;else{this.V=c<<=b;var d=c>>15&65535;d&&65535!==d&&(this.W=32768)}this.u[a]=c&65535;this.X=this.Z=c;this.b-=(this.g?6:7)+b}
|
||||
function nf(a){var b=Fe(this,a);a=a>>6&7;var c=this.u[a]<<16|this.u[a|1];this.V=this.W=0;b&=63;if(b&32){b=64-b;32<b&&(b=32);var d=c>>b-1;this.V=d<<16;d>>=1;c&2147483648&&(d|=4294967295<<32-b)}else b?(d=c<<b-1,this.V=d>>15,d<<=1,32<b&&(b=32),(c>>=32-b)&&4294967295!==(c|4294967295<<b&4294967295)&&(this.W=32768)):d=c;this.u[a]=d>>16&65535;this.u[a|1]=d&65535;this.X=d>>16;this.Z=d>>16|d;this.b-=(this.g?6:7)+b}function of(a){W(this,a,!Td(this))}function pf(a){W(this,a,Td(this))}
|
||||
function qf(a){V(this,a,Ce(this,a),Re);this.b-=this.g?9+(this.H&&6<=this.f?1:0):(this.F?5:3)+(7==this.f?2:0)}function rf(a){Ge(this,a,Be(this,a),Se);this.b-=this.g?9+(this.H&&6<=this.f?1:0):(this.F?5:3)+(7==this.f?2:0)}function sf(a){V(this,a,Ce(this,a),Te);this.b-=this.g?9+(this.H&&6<=this.f?1:0):(this.F?5:3)+(7==this.f?2:0)}function tf(a){Ge(this,a,Be(this,a),Ue);this.b-=this.g?9+(this.H&&6<=this.f?1:0):(this.F?5:3)+(7==this.f?2:0)}
|
||||
function uf(a){var b=Ce(this,a);a=Fe(this,a);this.Fa((0>b?this.u[-b-1]:b)&a);this.b-=this.g?4+(this.H&&6<=this.f?1:0):(this.F?4:3)+(7==this.f?2:0)}function vf(a){var b=Be(this,a);a=Ee(this,a);this.Fa(((0>b?this.u[-b-1]&255:b)&a)<<8);this.b-=this.g?4+(this.H&&6<=this.f?1:0):(this.F?4:3)+(7==this.f?2:0)}function wf(a){W(this,a,Vd(this))}function xf(a){W(this,a,!Wd(this)==!Ud(this))}function yf(a){W(this,a,!Vd(this)&&!Wd(this)==!Ud(this))}function zf(a){W(this,a,!Td(this)&&!Vd(this))}
|
||||
function Af(a){W(this,a,Vd(this)||!Wd(this)!=!Ud(this))}function Bf(a){W(this,a,Td(this)||Vd(this))}function Cf(a){W(this,a,!Wd(this)!=!Ud(this))}function Df(a){W(this,a,Wd(this))}function Ef(a){W(this,a,!Vd(this))}function Ff(a){W(this,a,!Wd(this))}function Gf(){this.ua(12,0,-9)}function Hf(a){W(this,a,!0)}function If(a){W(this,a,!Ud(this))}function Jf(a){W(this,a,Ud(this))}function Kf(a){a&1&&(this.V=0);a&2&&(this.W=0);a&4&&(this.Z=1);a&8&&(this.X=0);this.b-=5}
|
||||
function Lf(a){var b=Ce(this,a);a=Fe(this,a);var c=(b=0>b?this.u[-b-1]:b)-a;ae(this,c,a,b);this.b-=this.g?4+(this.H&&6<=this.f?1:0):(this.F?4:3)+(7==this.f?2:0)}function Mf(a){var b=Be(this,a);a=Ee(this,a);var c=(b=(0>b?this.u[-b-1]&255:b)<<8)-(a<<=8);ae(this,c,a,b);this.b-=this.g?4+(this.H&&6<=this.f?1:0):(this.F?4:3)+(7==this.f?2:0)}
|
||||
function Nf(a){var b=Fe(this,a);if(b){a=a>>6&7;var c=this.u[a]<<16|this.u[a|1];this.V=this.W=0;b&32768&&(b|=-65536);var d=~~(c/b);-32768<=d&&32767>=d?(this.u[a]=d&65535,this.u[a|1]=c-d*b&65535,this.Z=d>>16|d,this.X=d>>16):(this.W=32768,this.Z=d>>15|d,this.X=c>>16,-1===b&&65534===this.u[a]&&(this.u[a]=this.u[a|1]=1));this.b-=53}else this.Z=this.X=0,this.W=32768,this.V=65536,this.b-=7}function Of(){this.ua(24,0,-9);this.b-=20}
|
||||
function Pf(){this.O&49152?(this.oa|=128,this.ua(4,0,-8)):(this.v&&1120==this.bb&&this.v.setData(this.u[0],!0),this.j?Qf(this.j):this.aa());this.b-=7}function Rf(){this.ua(16,0,-9);this.b-=20}var Sf=[0,7,7,10,7,11,9,13];function Tf(a){this.L=this.b;Sd(this,De(this,a));this.b=this.L-Sf[this.g]}var Uf=[0,14,14,17,14,18,16,20];function Vf(a){this.L=this.b;var b=De(this,a);a=a>>6&7;ue(this,this.u[a]);this.u[a]=this.u[7];Sd(this,b);this.b=this.L-Uf[this.g]}
|
||||
var Wf=[3,9,9,13,10,14,12,16,4,9,9,13,10,14,13,17];function Xf(a){var b=Ce(this,a);this.L=this.b;Ie(this,a,b,this.Fa);this.b=this.L-Wf[(this.F?8:0)+this.g]+(7!=this.f||this.g?0:2)}function Yf(a){var b=Be(this,a);He(this,a,b,65535,this.Fa);this.b-=this.g?9+(this.H&&6<=this.f?1:0):(this.F?5:3)+(7==this.f?2:0)}var Zf=[7,13,13,17,14,18,17,21];
|
||||
function $f(a){var b=Fe(this,a);a=a>>6&7;b&32768&&(b|=-65536);var c=this.u[a];c&32768&&(c|=-65536);b=~~(b*c);this.u[a]=b>>16&65535;this.u[a|1]=b&65535;this.X=b>>16;this.Z=this.X|b;this.W=0;this.V=-32768>b||32767<b?65536:0;this.b-=23}function ag(){this.b-=5}function bg(){this.O&49152||(this.w.reset(),Ub(this),this.v&&this.v.setData(this.u[0],!0));this.b-=667}function cg(a){if(a&8)X.call(this,a);else{var b=we(this);a&=7;7==a?Sd(this,b):(Sd(this,this.u[a]),this.u[a]=b);this.b-=9}}
|
||||
function dg(){ve(this);this.b-=13}function eg(a){a&1&&(this.V=65536);a&2&&(this.W=32768);a&4&&(this.Z=0);a&8&&(this.X=32768);this.b-=5}function fg(a){var b=(a&448)>>6;if(this.u[b]=this.u[b]-1&65535)Sd(this,this.u[7]-((a&63)<<1)),this.b+=1;this.b-=6}function gg(a){V(this,a,Ce(this,a),gf);this.b-=this.g?9+(this.H&&6<=this.f?1:0):(this.F?5:3)+(7==this.f?2:0)}function hg(a){V(this,a,0,jf);this.b-=this.g?9:3+(7==this.f?2:0)}function ig(){this.ua(28,0,-9)}
|
||||
function jg(){this.v&&(this.v.vc(this.u[7],!0),this.v.setData(this.u[0],!0));this.J|=8;Xd(this,-2);this.b-=3}function kg(a){V(this,a,this.u[(a>>6&7)+this.wb],kf);this.b-=this.g?9:3+(7==this.f?2:0)}function X(a){var b;if(b=this.j)b=this.j,K(b,1)?(I(b,"undefined opcode "+N(b,a),!0,!0),b=Qf(b)):b=!1;b||this.ua(8,0,-9)}function Nd(a){lg[a>>12].call(this,a)}function mg(a){ng[a>>6&3].call(this,a)}function og(a){pg[a>>6&3].call(this,a)}function qg(a){rg[a>>6&3].call(this,a)}
|
||||
function sg(a){tg[a&15].call(this,a)}function ug(a){vg[a&15].call(this,a)}function wg(a){xg[a>>6&3].call(this,a)}function yg(a){zg[a>>6&3].call(this,a)}function Ag(a){Bg[a>>6&3].call(this,a)}
|
||||
var lg=[function(a){Cg[a>>8&15].call(this,a)},Xf,Lf,uf,qf,sf,lf,X,function(a){Dg[a>>8&15].call(this,a)},Yf,Mf,vf,rf,tf,gg,X],Cg=[function(a){Eg[a>>4&15].call(this,a)},Hf,Ef,wf,xf,Cf,yf,Af,Vf,Vf,mg,og,qg,X,X,X],ng=[function(a){Ie(this,a,0,this.tb);this.b-=this.g?9:3+(7==this.f?2:0)},function(a){V(this,a,0,Ve);this.b-=this.g?9:3+(7==this.f?2:0)},function(a){V(this,a,1,Ze);this.b-=this.g?9:3+(7==this.f?2:0)},function(a){V(this,a,1,Xe);this.b-=this.g?9:3+(7==this.f?2:0)}],pg=[function(a){V(this,a,0,af);
|
||||
this.b-=this.g?11:6},function(a){V(this,a,Td(this)?1:0,Le);this.b-=this.g?9:3+(7==this.f?2:0)},function(a){V(this,a,Td(this)?1:0,gf);this.b-=this.g?9:3+(7==this.f?2:0)},function(a){a=Fe(this,a);this.tb(a);this.b-=this.g?4:3+(7==this.f?2:0)}],rg=[function(a){V(this,a,0,ef);this.b-=this.g?9:3+(7==this.f?2:0)},function(a){V(this,a,0,cf);this.b-=this.g?9:3+(7==this.f?2:0)},function(a){V(this,a,0,Pe);this.b-=this.g?9:3+(7==this.f?2:0)},function(a){V(this,a,0,Ne);this.b-=this.g?9:3+(7==this.f?2:0)}],Eg=
|
||||
[function(a){Fg[a&15].call(this,a)},X,X,X,Tf,Tf,Tf,Tf,cg,X,sg,ug,hg,hg,hg,hg],Fg=[Pf,jg,dg,Gf,Rf,bg,X,X,X,X,X,X,X,X,X,X],tg=[ag,function(){this.V=0;this.b-=5},function(){this.W=0;this.b-=5},Kf,function(){this.Z=1;this.b-=5},Kf,Kf,Kf,function(){this.X=0;this.b-=5},Kf,Kf,Kf,Kf,Kf,Kf,Kf],vg=[ag,function(){this.V=65536;this.b-=5},function(){this.W=32768;this.b-=5},eg,function(){this.Z=0;this.b-=5},eg,eg,eg,function(){this.X=32768;this.b-=5},eg,eg,eg,eg,eg,eg,eg],Dg=[Ff,Df,zf,Bf,If,Jf,of,pf,Of,ig,wg,yg,
|
||||
Ag,X,X,X],xg=[function(a){He(this,a,0,255,this.tb);this.b-=this.g?9:3+(7==this.f?2:0)},function(a){Ge(this,a,0,We);this.b-=this.g?9:3+(7==this.f?2:0)},function(a){Ge(this,a,1,$e);this.b-=this.g?9:3+(7==this.f?2:0)},function(a){Ge(this,a,1,Ye);this.b-=this.g?9:3+(7==this.f?2:0)}],zg=[function(a){Ge(this,a,0,bf);this.b-=this.g?11:6},function(a){Ge(this,a,Td(this)?1:0,Me);this.b-=this.g?9:3+(7==this.f?2:0)},function(a){Ge(this,a,Td(this)?1:0,hf);this.b-=this.g?9:3+(7==this.f?2:0)},function(a){a=Ee(this,
|
||||
a);this.tb(a<<8);this.b-=this.g?4:3+(7==this.f?2:0)}],Bg=[function(a){Ge(this,a,0,ff);this.b-=this.g?9+(this.kc&1):3+(7==this.f?2:0)},function(a){Ge(this,a,0,df);this.b-=this.g?9:3+(7==this.f?2:0)},function(a){Ge(this,a,0,Qe);this.b-=this.g?9+(this.kc&1):3+(7==this.f?2:0)},function(a){Ge(this,a,0,Oe);this.b-=this.g?9:3+(7==this.f?2:0)}];function Od(a){Gg[a>>12].call(this,a)}
|
||||
var Gg=[function(a){Hg[a>>8&15].call(this,a)},Xf,Lf,uf,qf,sf,lf,function(a){Ig[a>>8&15].call(this,a)},function(a){Jg[a>>8&15].call(this,a)},Yf,Mf,vf,rf,tf,gg,X],Hg=[function(a){Kg[a>>4&15].call(this,a)},Hf,Ef,wf,xf,Cf,yf,Af,Vf,Vf,mg,og,qg,function(a){Lg[a>>6&3].call(this,a)},X,X],Lg=[function(a){a=this.u[7]+((a&63)<<1)&65535;var b=this.ya(a|this.P);Sd(this,this.u[5]);this.u[6]=a+2&65535;this.u[5]=b;this.b-=8},function(a){a=ze(this,a,0);this.Fa(a);ue(this,a);this.b-=11},function(a){var b=we(this);
|
||||
this.L=this.b;this.Fa(b);Ae(this,a,0,b);this.b=this.L-Zf[this.g]},function(a){Ie(this,a,Wd(this)?65535:0,this.Fa);this.b-=this.g?9:3+(7==this.f?2:0)}],Kg=[function(a){Mg[a&15].call(this,a)},X,X,X,Tf,Tf,Tf,Tf,cg,function(a){a&8?(this.O&49152||(this.O=this.O&-225|(a&7)<<5,this.J|=1,this.J&=-3),this.b-=5):X.call(this,a)},sg,ug,hg,hg,hg,hg],Mg=[Pf,jg,function(){ve(this);this.J|=this.O&16;this.b-=13},Gf,Rf,bg,dg,function(){this.ua(8,0,-9)},X,X,X,X,X,X,X,X],Ig=[$f,$f,Nf,Nf,mf,mf,nf,nf,kg,kg,X,X,X,X,fg,
|
||||
fg],Jg=[Ff,Df,zf,Bf,If,Jf,of,pf,Of,ig,wg,yg,Ag,function(a){Ng[a>>6&3].call(this,a)},X,X],Ng=[X,function(a){a=ze(this,a,65536);this.Fa(a);ue(this,a);this.b-=11},function(a){var b=we(this);this.L=this.b;this.Fa(b);Ae(this,a,65536,b);this.b=this.L-Zf[this.g]},X];
|
||||
function Og(a){z.call(this,"ROM",a,Og,128);this.ja=this.B=null;this.A=a.addr;this.f=a.size;this.F=!1;this.v=a.alias;this.g=a.file;this.H=w(this.g);if(this.g){a=this.g;var b=pa(this.H);"json"!=b&&"hex"!=b&&(a=Ga()+"/api/v1/dump?file="+this.g+"&format=bytes&decimal=true");var c=this;Ea(a,null,!0,function(a,b,f){f?(c.M("Unable to load ROM resource (error "+f+": "+a+")"),c.g=null):(ob(c.nb,a,b),(a=Fa(a,b))?(c.B=a.ha,c.ja=a.ja):c.g=null);Pg(c)})}}E(Og);k=Og.prototype;
|
||||
k.Ia=function(a,b,c,d){this.w=b;this.b=c;this.j=d;Pg(this)};k.Ma=function(){this.ja&&(this.j&&Qg(this.j,this.id,this.A,this.f,this.ja),delete this.ja);return!0};k.La=function(){return!0};
|
||||
function Pg(a){if(!zb(a)){if(a.g){if(!a.B||!a.w)return;a.f||(a.f=a.B.length);if(a.B.length!=a.f)Bb(a,"ROM size ("+q(a.B.length,8,!0)+") does not match specified size ("+q(a.f,8,!0)+")");else{var b;a:{b=a.A;a.status(a.f+"-byte ROM at "+p(b));if(57344<=b&&b<57344+uc){var c={};b=(c[b]=[Og.prototype.re,Og.prototype.sf,null,null,null,a.f>>1],c);if(Lb(a.w,a,b)){b=a.F=!0;break a}}else if(Ac(a.w,b,a.f,pd)){for(c=0;c<a.B.length;c++)Hc(a.w,b+c,a.B[c]);b=!0;break a}b=!1}if(b){b=[];"number"==typeof a.v?b.push(a.v):
|
||||
null!=a.v&&a.v.length&&(b=a.v);for(c=0;c<b.length;c++){for(var d=a,e=b[c],f=d.w,g=d.f,h=[],l=d.A>>>f.ra;0<g&&l<f.ea.length;)h.push(f.ea[l++]),g-=f.Ka;f=d.w;d=d.f;g=0;for(e>>>=f.ra;0<d&&e<f.ea.length;){l=h[g++];if(!l)break;f.ea[e++]=l;d-=f.Ka}}a.F||delete a.B}}}L(a)}}k.re=function(a){return this.B[a-this.A]};k.sf=function(){};db(function(){for(var a=H(document,"pdp11","rom"),b=0;b<a.length;b++){var c=a[b],d=F(c),d=new Og(d);G(d,c)}});
|
||||
function Rg(a){z.call(this,"RAM",a,Rg);this.ja=this.B=null;this.g=a.addr;this.v=a.size;this.Wa=a.load;this.Va=a.exec;this.A=!1;this.f=a.file;this.F=w(this.f);if(this.f){a=this.f;var b=pa(this.F);"json"!=b&&"hex"!=b&&(a=Ga()+"/api/v1/dump?file="+this.f+"&format=bytes&decimal=true");var c=this;Ea(a,null,!0,function(a,b,f){f?(c.M("Unable to load RAM resource (error "+f+": "+a+")"),c.f=null):(ob(c.nb,a,b),(a=Fa(a,b))?(c.B=a.ha,c.ja=a.ja,null==c.Wa&&(c.Wa=a.Wa),null==c.Va&&(c.Va=a.Va)):c.f=null);Sg(c)})}}
|
||||
E(Rg);Rg.prototype.Ia=function(a,b,c,d){this.w=b;this.b=c;this.j=d;Sg(this)};Rg.prototype.Ma=function(){this.ja&&(this.j&&Qg(this.j,this.id,this.g,this.v,this.ja),delete this.ja);return!0};Rg.prototype.La=function(){return!0};function Sg(a){if(a.w&&(!a.A&&a.v&&(Ac(a.w,a.g,a.v,Kc)?a.A=!0:a.v=0),!zb(a))){if(!a.A)x("No RAM allocated");else if(a.f){if(!a.B||!a.w)return;Tg(a,a.B,a.Wa,a.Va,a.g)}L(a)}}
|
||||
Rg.prototype.reset=function(){if(this.A){for(var a=this.w,b=this.g,c=this.v,d=b&a.w,b=b>>>a.ra;0<c&&b<a.ea.length;){var e=a.ea[b],f=c,g=0,h,d=d||0,g=g&255;void 0===f&&(f=e.size);if(Cb&&e.D)for(h=d;f--&&h<e.D.length;h++)e.D[h]=g;else for(h=d;f--&&h<e.size;h++)e.H(d,g,e.G+d);c-=a.Ka;b++;d=0}this.B&&Tg(this,this.B,this.Wa,this.Va,this.g,!0)}};
|
||||
function Tg(a,b,c,d,e,f){var g=!1,h=!1;if(null==c)for(var l=0;l<b.length-1;){var m=b[l]&255|(b[l+1]&255)<<8;if(m)if(m&255){var n=l;if(1!=m){I(a,"invalid signature ("+v(m)+") at offset "+v(n),4096);break}if(l+6>=b.length){I(a,"invalid block at offset "+v(n),4096);break}for(var l=l+2,r=b[l++]&255|(b[l++]&255)<<8,u=b[l++]&255|(b[l++]&255)<<8,m=m+((r&255)+(r>>8)+(u&255)+(u>>8)),t=l,C=r-=6;0<r&&l<b.length;)m+=b[l++]&255,r--;if(r||l>=b.length){I(a,"insufficient data for block at offset "+v(n),4096);break}m+=
|
||||
b[l++]&255;if(m&255){I(a,"invalid checksum ("+q(m,2,!0)+") for block at offset "+v(n),4096);break}if(C)for(I(a,"loading "+v(C)+" bytes at "+v(u)+"-"+v(u+C-1),4096);C--;)Hc(a.w,u++,b[t++]&255);else u&1?g=!0:null==d&&(d=u),null!=d&&I(a,"starting address: "+v(d),4096);h=!0}else l++;else l+=2}if(!h&&(null==c&&(c=e),null!=c)){for(e=0;e<b.length;e++)Hc(a.w,c+e,b[e]);h=!0}if(h){if(null==d||g)a.b.aa(),f=!1;null!=d&&Rd(a.b,d,f)}return h}
|
||||
db(function(){for(var a=H(document,"pdp11","ram"),b=0;b<a.length;b++){var c=a[b],d=F(c),d=new Rg(d);G(d,c)}});function Ug(a){z.call(this,"Keyboard",a,Ug,1024);L(this)}E(Ug);Ug.prototype.za=function(){return!1};Ug.prototype.Ia=function(a,b,c,d){this.B=a;this.b=c;this.j=d};db(function(){for(var a=H(document,"pdp11","keyboard"),b=0;b<a.length;b++){var c=a[b],d=F(c),d=new Ug(d);G(d,c)}});
|
||||
function Vg(a){this.L=a.adapter;this.Y=a.baudReceive||9600;this.wa=a.baudTransmit||9600;this.va=a.upperCase;this.v=this.F=null;this.ma=a.tabSize;this.ca=a.charBOL;this.H=0;this.K=!0;z.call(this,"SerialPort",a,Vg,262144);var b=a.binding;if("console"==b)this.F="";else{var c;a=Wg;b&&(void 0===c&&(c="Panel"),(c=rb(c,this.id))&&(b=c.D[b])&&this.za(null,a,b))}this.A=this.P=this.S=null;this.exports={connect:this.Tc,receiveData:this.hc,receiveStatus:this.He}}E(Vg);var Wg="buffer";k=Vg.prototype;
|
||||
k.za=function(a,b,c){var d=this;switch(b){case Wg:return this.D[b]=this.v=c,c.onkeydown=function(a){a=a||window.event;var b=0,c=a.keyCode;8==c?b=a.altKey?la.Ac:la.ad:46==c?b=la.Ac:a.ctrlKey&&c>=la.yc&&c<=la.hd&&(b=c-(la.yc-la.Yc));b&&(a.preventDefault&&a.preventDefault(),d.hc(b));return!0},c.onkeypress=function(a){a=a||window.event;var b=a.which||a.keyCode;a.altKey&&b==la.$c&&(b=la.Zc);d.hc(b);a.preventDefault&&a.preventDefault();return!0},c.onpaste=function(a){a.stopPropagation&&a.stopPropagation();
|
||||
a.preventDefault&&a.preventDefault();(a=a.clipboardData||window.clipboardData)&&d.hc(a.getData("Text"))},c.removeAttribute("readonly"),!0}return!1};
|
||||
k.Ia=function(a,b,c,d){this.B=a;this.w=b;this.b=c;this.j=d;var e=this;this.da=Qc(this.b,this.L?-1:48,4,262144);this.na=Nc(this.b,function(){var a;a=-1;e.I.length&&(a=e.I.shift()&255,I(e,"receiveByte("+q(a,2,!0)+")"),e.va&&97<=a&&122>a&&(a-=32),Pc(e.b,e.na,1E3/Math.round(e.Y/10)));0<=a&&(e.N=a,e.f&128?e.N|=49152:e.f|=128,e.f&64&&Oc(c,e.da))});this.T=Qc(this.b,this.L?-1:52,4,262144);this.Ba=Nc(this.b,function(){e.g|=128;e.g&64&&Oc(c,e.T)});Lb(b,this,Xg,this.L?64832+8*(this.L-1)-65392:0);Nb(b,this.reset.bind(this));
|
||||
L(this)};k.Tc=function(a){if(!this.A){var b=Cd(this.B,"connection");if(b){var c=b.split("->");if(2==c.length){var d=za(c[0]);if(d!=this.mb)return;c=za(c[1]);if(this.A=qb(c)){var e=this.A.exports;if(e){var f=e.connect;f&&f.call(this.A,this.K);if(this.P=e.receiveData){this.K=a;this.S=e.receiveStatus;this.status(this.nb+"."+d+" connected to "+c);return}}}}this.status("Unable to establish connection: "+b)}}};
|
||||
k.Ma=function(a,b){if(!b)if(this.Tc(this.K),!a||!this.restore)this.reset();else if(!this.restore(a))return!1;return!0};k.La=function(a){return a?this.save():!0};k.reset=function(){Yg(this)};k.save=function(){var a=new U(this);a.set(0,[]);return a.data()};k.restore=function(){return Yg(this)};function Yg(a){a.N=0;a.f=8192;a.g=128;a.I=[];return!0}
|
||||
k.hc=function(a){if("number"==typeof a)this.I.push(a);else if("string"==typeof a)for(var b=0,c,d=0;d<a.length;d++){c=b;b=a.charCodeAt(d);if(10==b){if(13==c)continue;b=13}this.I.push(b)}else this.I=this.I.concat(a);Pc(this.b,this.na,1E3/Math.round(this.Y/10));return!0};k.He=function(a){var b=this.f;this.f&=-12289;a&32&&(this.f|=8192);a&256&&(this.f|=4096);b!=this.f&&(this.f|=32768,this.f&32&&Oc(this.b,this.da))};k.ee=function(){var a=this.f&65534;this.f&=-32769;return a};
|
||||
k.df=function(a){var b=a^this.f;this.f=this.f&-112|a&111;this.S&&b&6&&(b=0,b=this.K?b|(a&4?32:0)|(a&2?320:0):b|(a&4?16:0)|(a&2?1048576:0),this.S.call(this.A,b))};k.de=function(){this.f&=-129;return this.N};k.cf=function(){};k.Ge=function(){return this.g};k.Hf=function(a){this.g&128&&(a&64?Oc(this.b,this.T):ad(this.b,this.T));this.g=this.g&-70|a&69};k.Fe=function(){return 0};
|
||||
k.Gf=function(a){a&=255;I(this,"transmitByte("+q(a,2,!0)+")");this.P&&this.P.call(this.A,a);a&=127;if(this.v)if(13==a)this.H=0;else if(8==a)this.v.value=this.v.value.slice(0,-1),0<this.H&&this.H--;else{if(a){var b;b=(b=13!=a&&10!=a?Aa[a]:null)?"<"+b+">":String.fromCharCode(a);var c=b.length;32>a&&1==c&&(c=0);9==a&&(a=this.ma||8,c=a-this.H%a,this.ma&&(b=ta("",c)));this.ca&&!this.H&&c&&(b=String.fromCharCode(this.ca)+b);this.v.value+=b;this.v.scrollTop=this.v.scrollHeight;this.H+=c}}else if(null!=this.F){if(10==
|
||||
a||1024<=this.F.length)this.i(this.F),this.F="";10!=a&&(this.F+=String.fromCharCode(a))}Pc(this.b,this.Ba,1E3/Math.round(this.wa/10));this.g&=-129};var Zg={},Xg=(Zg[65392]=[null,null,Vg.prototype.ee,Vg.prototype.df,"RCSR"],Zg[65394]=[null,null,Vg.prototype.de,Vg.prototype.cf,"RBUF"],Zg[65396]=[null,null,Vg.prototype.Ge,Vg.prototype.Hf,"XCSR"],Zg[65398]=[null,null,Vg.prototype.Fe,Vg.prototype.Gf,"XBUF"],Zg);
|
||||
db(function(){for(var a=H(document,"pdp11","serial"),b=0;b<a.length;b++){var c=a[b],d=F(c),d=new Vg(d);G(d,c)}});function jd(a){z.call(this,"PC11",a,jd);this.N=$g(this,a.autoMount);this.g=0;this.ca=a.baudReceive||3600;this.I=this.K=this.f=0;this.H=[];this.F=ah;this.v=bh;this.L=this.A="";this.ha=this.Wa=this.Va=null;this.T=-1;this.P=!Pa("Mobi")&&window&&"FileReader"in window}E(jd);var ah="",bh=0;
|
||||
function $g(a,b){if(b&&"string"==typeof b)try{b=eval("("+b+")")}catch(c){x(a.type+" auto-mount error: "+c.message+" ("+b+")"),b=null}return b||{}}k=jd.prototype;
|
||||
k.za=function(a,b,c){var d=this,e=bh;switch(b){case "listTapes":return this.D[b]=c,c.onchange=function(){var a=d.D.descTape,b=c.options[c.selectedIndex];if(a&&b){var e={};if(b=b.getAttribute("data-value"))try{e=eval("("+b+")")}catch(l){x("PC11 option error: "+l.message)}b=e.desc;void 0===b&&(b="");e=e.href;void 0!==e&&(b='<a href="'+e+'" target="_blank">'+b+"</a>");a.innerHTML=b}},!0;case "descTape":return this.D[b]=c,!0;case "readTape":e=2;case "loadTape":return e||(e=1),this.D[b]=c,c.onclick=function(){var a=
|
||||
d.D.listTapes;a&&ch(d,a.options[a.selectedIndex].text,a.value,e)},!0;case "mountTape":if(!this.P){c.parentNode.removeChild(c);break}this.D[b]=c;c.addEventListener("change",function(){var a=c.children[0];a.children[1].disabled=!a.children[0].files.length});c.onsubmit=function(a){if(a=a.currentTarget[1].files[0]){var b=a.name;ch(d,w(b,!0),b,1,a)}return!1};return!0;case "readProgress":return this.D[b]=c,!0}return!1};
|
||||
k.Ia=function(a,b,c,d){this.B=a;this.w=b;this.b=c;this.j=d;this.Y=dh(a);var e=this;if(a=$g(this,Cd(this.B,"autoMount")))for(var f in a)"PTR"==f&&(this.N[f]=a[f]);this.S=Qc(this.b,56,4,4096);this.da=Nc(this.b,function(){1==(e.f&32769)&&!(e.f&128)&&e.I<e.H.length&&(e.K=e.H[e.I++]&255,zh(e,e.I/e.H.length*100),e.f|=128,e.f&=-2049,e.f&64&&Oc(e.b,e.S))});Lb(b,this,Ah);Nb(b,this.reset.bind(this));Bh(this,"None",ah,!0);this.P&&Bh(this,"Local Tape","?");Bh(this,"Remote Tape","??");Ch(this)||L(this)};
|
||||
k.Ma=function(a,b){if(!b)if(!a||!this.restore)this.reset();else if(!this.restore(a))return!1;return!0};k.La=function(a){return a?this.save():!0};k.reset=function(){this.f&=-2241;this.K=0};function Ch(a){a.g=0;var b=a.N.PTR;if(b){var c=b.path||"";if(!(b=b.name))a:{if((b=a.D.listTapes)&&b.options)for(var d=0;d<b.options.length;d++){var e=b.options[d];if(e.value==c){b=e.text;break a}}b=w(c,!0)}c&&b?Dh(a,b,c,1,!0):Eh(a)}return!!a.g}
|
||||
function ch(a,b,c,d,e){if(c)if("?"==c)a.M('Use "Choose File" and "Mount" to select and load a local tape.');else{if("??"==c){c=window.prompt("Enter the URL of a remote tape image.","")||"";if(!c)return;b=w(c);a.status("Attempting to load "+c+' as "'+b+'"');a.F="??"}else a.F=c;Dh(a,b,c,d,!1,e)}else Fh(a,!1)}
|
||||
function Dh(a,b,c,d,e,f){var g=-1;if(a.A.toLowerCase()!=c.toLowerCase()||a.v!=d)g++,Fh(a,!0),a.C.ob?a.M("PC11 busy"):(e&&(a.g++,K(a)&&I(a,"auto-loading tape: "+b)),Gh(a,b,c,d,f)?g++:a.C.ob=!0);g&&Hh(a,a.L,a.A,a.v,a.ha,a.Wa,a.Va)}
|
||||
function Gh(a,b,c,d,e){var f=c;if(e){var g=new FileReader;g.onload=function(){var e=g.result;e&&(e=new Uint8Array(e,0,e.byteLength),Hh(a,b,c,d,e),a.F="?");Eh(a)};g.readAsArrayBuffer(e);return!0}0>c.indexOf("/api/v1/dump")&&(e=pa(c),f="json"==e||"gz"==e?encodeURI(c):Ga()+"/api/v1/dump?path="+encodeURIComponent(c)+"&format=json");return!!Ea(f,null,!0,function(e,f,g){var h=0>g&&a.B&&!a.B.C.la;g?a.M('Unable to load tape "'+b+'" (error '+g+": "+e+")",h):(ob(a.nb,e,f),(e=Fa(e,f))&&Hh(a,b,c,d,e.ha,e.Wa,
|
||||
e.Va));a.C.ob=!1;a.g&&(a.g--,a.g||L(a));Eh(a)})}function Bh(a,b,c,d){if((a=a.D.listTapes)&&a.options){for(var e=0;e<a.options.length;e++)if(a.options[e].value==c)return;e=document.createElement("option");e.text=b;e.value=c;d&&a.childNodes[0]?a.insertBefore(e,a.childNodes[0]):a.appendChild(e)}}
|
||||
function Eh(a){var b=a.D.listTapes;if(b&&b.options){a=a.F||a.A;for(var c=0;c<b.options.length;c++)if(b.options[c].value==a){b.selectedIndex!=c&&(b.selectedIndex=c);break}c==b.options.length&&(b.selectedIndex=0)}}function zh(a,b){b|=0;if(b!==a.T){var c=a.D.readProgress;c&&(c=(c=H(c,"pcjs-progress-bar"))&&c[0])&&c.style&&(c.style.width=b+"%");a.T=b}}
|
||||
function Hh(a,b,c,d,e,f,g){a.L=b;a.A=c;a.v=d;a.ha=e;a.Wa=f;a.Va=g;2==d?a.Y&&Tg(a.Y,e,f,g,null,!1)?a.status('Read tape "'+b+'"'):a.M('No valid memory address for tape "'+b+'"'):(a.I=0,a.H=e,a.status('Loaded tape "'+b+'"'),zh(a,0))}function Fh(a,b){if(a.A||!1===b)a.L="",a.A="",b||(a.v&&a.status(1==a.v?"tape detached":"tape unloaded"),a.F=ah,a.v=bh,Eh(a))}k.save=function(){return(new U(this)).data()};k.restore=function(){return!0};k.Yd=function(){return this.f&65534};
|
||||
k.Xe=function(a){a&1&&(this.f&32768?(a&=-2,this.f&64&&Oc(this.b,this.S)):(this.f&=-129,this.f|=2048,this.K=0,Pc(this.b,this.da,1E3/Math.round(this.ca/10))));this.f=this.f&-66|a&65};k.Xd=function(){this.f&=-129;this.f|=2048;return this.K};k.We=function(){};var Ih={},Ah=(Ih[65384]=[null,null,jd.prototype.Yd,jd.prototype.Xe,"PRS"],Ih[65386]=[null,null,jd.prototype.Xd,jd.prototype.We,"PRB"],Ih);
|
||||
function Jh(a,b,c){z.call(this,"Disk",{id:a.nb+".disk"+q(++Kh,4)},Jh,8192);this.controller=a;this.B=a.B;this.j=a.j;this.v=b;this.Xa=b.name;this.dc=b.dc;Lh(this,c,b.fa,b.ka,b.ia,b.Ca);L(this)}var Kh=0;E(Jh);k=Jh.prototype;k.Ia=function(a,b,c,d){this.j=d};
|
||||
function Lh(a,b,c,d,e,f){a.mode=b;a.fa=c;a.ka=d;a.ia=e;a.Ca=f;a.b=[];if("preload"!=a.mode){b=Array(a.fa);for(c=0;c<b.length;c++){d=Array(a.ka);for(e=0;e<d.length;e++){f=Array(a.ia);for(var g=1;g<=f.length;g++)f[g-1]=Mh(null,c,e,g,a.Ca,0);d[e]=f}b[c]=d}a.b=b}a.f=null}
|
||||
function Nh(a,b,c,d,e){var f=c;if(a.w)return!0;a.Xa=b;a.Pa=c;a.uc=w(c);a.w=e;a.A=a.controller;if(d){var g=new FileReader;g.onload=function(){var b=g.result,c,d=b?b.byteLength:0,e=ka[d];if(e){a.fa=e[0];a.ka=e[1];a.ia=e[2];a.Ca=e[3]||512;c=a.Ca>>2;var f=e=0,b=new DataView(b,0,d);a.b=Array(a.fa);for(d=0;d<a.b.length;d++)for(var u=a.b[d]=Array(a.ka),t=0;t<u.length;t++)for(var C=u[t]=Array(a.ia),y=0;y<C.length;y++){for(var A=Mh(null,d,t,y+1,a.Ca,0),D=A.data,Sa=0;Sa<c;Sa++,f+=4)var S=D[Sa]=b.getInt32(f,
|
||||
!0),e=e+S&-1;A.Ra=c;C[y]=A}a.f=e;c=a}else a.M("Unrecognized disk format ("+d+" bytes)");a.w&&(a.w.call(a.controller,a.v,c,a.Xa,a.Pa),a.w=null)};g.readAsArrayBuffer(d);return!0}0>c.indexOf("/api/v1/dump")&&(b=pa(c),"json"==b||"gz"==b?f=encodeURI(c):(d="path",e="&mbhd=10",!c.indexOf("http:")||!c.indexOf("ftp:")||0<="dsk ima img 360 720 12 144".split(" ").indexOf(b)?(d="disk",e="&mbhd=0"):qa(c,"/")&&(d="dir"),f=Ga()+"/api/v1/dump?"+d+"="+encodeURIComponent(c)+(a.dc?"":e)+"&format=json"));return!!Ea(f,
|
||||
null,!0,function(b,c,d){Oh(a,b,c,d)})}
|
||||
function Oh(a,b,c,d){var e=null;a.g=!1;var f=0>d&&a.B&&!a.B.C.la;if(d)a.controller.M('Unable to load disk "'+a.Xa+'" (error '+d+": "+b+")",f);else{ob(a.controller.nb,b,c);try{if(0<w(a.uc,!0).toLowerCase().indexOf("-readonly"))a.g=!0;else{var g=c.indexOf("\n");0<g&&1024>g&&0<c.substring(0,g).indexOf("write-protected")&&(a.g=!0)}var h;"<"==c.substr(0,1)?h=["Missing disk image: "+a.Xa]:h=0>c.indexOf("0x")&&'["'!=c.substr(0,2)?JSON.parse(c.replace(/([a-z]+):/gm,'"$1":').replace(/\/\/[^\n]*/gm,"")):eval("("+
|
||||
c+")");if(h.length)if(1==h.length)x(h[0]);else{a.fa=h.length;a.ka=h[0].length;a.ia=h[0][0].length;var l=h[0][0][0];a.Ca=l&&l.length||512;for(d=c=0;d<a.fa;d++)for(f=0;f<a.ka;f++)for(g=0;g<a.ia;g++)if(l=h[d][f][g]){var m=l.length;void 0===m&&(m=l.length=512);var m=m>>2,n=l.pattern;void 0===n&&(n=l.pattern=0);var r=l.data;if(void 0===r){var u=l.bytes;if(void 0!==u&&u.length){for(var t=m<<2,C=u.length;C<t;C++)u[C]=n;Ph(l,u)}else r=[],n=l.pattern=n|n<<8|n<<16|n<<24,l.data=r;delete l.bytes}Mh(l,d,f);for(t=
|
||||
0;t<r.length;t++)c=c+r[t]&-1}a.b=h;a.f=c;e=a}else x("Empty disk image: "+a.Xa)}catch(y){x("Disk image error ("+b+"): "+y.message)}}a.w&&(a.w.call(a.A,a.v,e,a.Xa,a.Pa),a.w=null)}function Mh(a,b,c,d,e,f){a||(a={sector:d,length:e,data:[],pattern:f});a.Ig=b;a.Jg=c;a.ab=a.Ra=0;a.hb=!1;return a}
|
||||
k.seek=function(a,b,c,d,e){d=null;var f=this.v,g=this.b[a];if(g){var h=g[b];if(!h&&f.nd&&b<f.ka)for(h=g[b]=Array(f.Mc),g=0;g<h.length;g++)h[g]=Mh(null,a,b,g+1,f.rc,0);if(h){for(g=0;g<h.length;g++)if(h[g]&&h[g].sector==c){d=h[g];break}!d&&f.nd&&9==f.nc&&(d=h[g]=Mh(null,a,b,f.nc,f.rc,0))}}e&&e(d,!1);return d};function Ph(a,b){for(var c=0,d=a.length>>2,e=Array(d),f=0;f<d;f++)e[f]=b[c]|b[c+1]<<8|b[c+2]<<16|b[c+3]<<24,c+=4;a.data=e}
|
||||
k.read=function(a,b){var c=-1;if(a&&b<a.length)var c=a.data,d=b>>2,c=(d<c.length?c[d]:a.pattern)>>((b&3)<<3)&255;return c};k.write=function(a,b,c){if(this.g)return!1;if(b<a.length){if(c!=this.read(a,b,!0)){var d=a.data,e=a.pattern,f=b>>2;b=(b&3)<<3;for(var g=d.length;g<=f;g++)d[g]=e;a.Ra?f<a.ab?(a.Ra+=a.ab-f,a.ab=f):f>=a.ab+a.Ra&&(a.Ra+=f-(a.ab+a.Ra)+1):(a.ab=f,a.Ra=1);d[f]=d[f]&~(255<<b)|c<<b}return!0}return null};
|
||||
function Qh(a,b){var c=a.ka*a.ia,d=b/c|0;return d<a.fa?(b%=c,a.seek(d,b/a.ia|0,b%a.ia+1)):null}function Rh(a,b,c){for(var d=1,e=0,f=0;d--;){var g=a.read(b,c++);if(0>g)break;e|=g<<f;f+=8}return e}function Sh(a){for(var b="",c=0,d;d=Qh(a,c++);)for(var e=0,f=d.length;e<f;e++)b+=String.fromCharCode(Rh(a,d,e));return btoa(b)}
|
||||
k.save=function(){var a=0,b=[];b[a++]=[this.Pa,this.f,this.fa,this.ka,this.ia,this.Ca];if(!this.g)for(var c=this.b,d=0;d<c.length;d++)for(var e=0;e<c[d].length;e++)for(var f=0;f<c[d][e].length;f++){var g=c[d][e][f];if(g&&g.Ra){for(var h=[],l=0,m=g.ab,n=g.ab+g.Ra;m<n;)h[l++]=g.data[m++];b[a++]=[d,e,f,g.ab,h]}}return b};
|
||||
k.restore=function(a){var b=0,c="unsupported restore format";if(a&&0<a.length){var d=0,e=a[d++];e&&2<=e.length&&(!this.b.length&&6<=e.length?Lh(this,"local",e[2],e[3],e[4],e[5]):null!=e[1]&&null!=this.f&&e[1]!=this.f&&(c="original checksum ("+e[1]+") differs from current checksum ("+this.f+")",b=-2));for(this.b.length||(b=-1);d<a.length&&0<=b;){var f=0,g=a[d++],h=g[f++],l=g[f++],m=g[f++];if(h>=this.b.length||l>=this.b[h].length||m>=this.b[h][l].length){c="sector (CHS="+h+":"+l+":"+m+") out of range ("+
|
||||
b+" changes applied)";b=-1;break}if(this.g){c="unable to modify write-protected disk";b=-1;break}e=g[f++];f=g[f++];g=e+f.length;if(h=this.b[h][l][m]){for(l=h.data.length;l<e;)h.data[l++]=h.pattern;l=0;h.ab=e;for(h.Ra=f.length;e<g;)h.data[e++]=f[l++];b++}}}0>b&&-2!=b&&this.controller.M("Unable to restore disk '"+this.Xa+": "+c);return b};
|
||||
k.toJSON=function(){var a;a=0;for(var b;b=Qh(this,a++);)Th(b);a=JSON.stringify(this.b,function(a,b){if("file"!=a)return b});a=a.replace(/,"length":512/gm,"").replace(/,"pattern":0/gm,"");a=a.replace(/"(sector|length|data|pattern)":/gm,"$1:");a=a.replace(/,"[^"]*":([0-9]+|true|false)/gm,"");a=a.replace(/(sector|length|data|pattern):/gm,'"$1":');return a=a.replace(/([\]}]),/gm,"$1,\n")};
|
||||
function Th(a){var b=a.data,c=b.length;if(c<<2==a.length){for(var d=c-1,e=b[d],f=0;d--&&b[d]===e;)f++;f++&&(b.length=c-f,a.pattern=e)}}function T(a){z.call(this,"RK11",a,T,65536);this.K=Uh(this,a.autoMount);this.F=0;this.g=Array(8);this.L=!Pa("Mobi")&&window&&"FileReader"in window}E(T);function Uh(a,b){if(b&&"string"==typeof b)try{b=eval("("+b+")")}catch(c){x(a.type+" auto-mount error: "+c.message+" ("+b+")"),b=null}return b||{}}k=T.prototype;
|
||||
k.za=function(a,b,c){var d=this;switch(b){case "listDisks":return this.D[b]=c,c.onchange=function(){var a=d.D.descDisk,b=c.options&&c.options[c.selectedIndex];if(a&&b){var g={};if(b=b.getAttribute("data-value"))try{g=eval("("+b+")")}catch(h){x("RK11 option error: "+h.message)}b=g.desc;void 0===b&&(b="");g=g.href;void 0!==g&&(b='<a href="'+g+'" target="_blank">'+b+"</a>");a.innerHTML=b}},!0;case "descDisk":case "listDrives":return this.D[b]=c,c.onchange=function(){var a=na(c.value,10);null!=a&&Vh(d,
|
||||
a)},!0;case "loadDisk":return this.D[b]=c,c.onclick=function(){var a=d.D.listDisks;a&&a.options&&Wh(d,a.options[a.selectedIndex].text,a.value)},!0;case "bootDisk":return this.D[b]=c,c.onclick=function(){var a,b=d.D.listDrives,b=b&&na(b.value,10);null==b||0>b||b>=d.g.length||!(a=d.g[b])?d.M("Unable to boot the selected drive"):a.qa?(Rd(d.b,0,!0),(a=d.Bc(a,0,0,0,512,0,2))&&d.M("Unable to read the boot sector ("+a+")")):d.M("Load a disk into the drive first")},!0;case "saveDisk":if(!this.L){c.parentNode.removeChild(c);
|
||||
break}this.D[b]=c;c.onclick=function(){var a=d.D.listDrives;a&&a.options&&d.g&&((a=d.g[na(a.value,10)||0])?(a=a.qa)?(a=Qa(Sh(a),a.uc.replace(".json",".img")),x(a)):d.M("No disk loaded in drive."):d.M("No disk drive selected."))};return!0;case "mountDisk":if(this.L)return this.D[b]=c,c.addEventListener("change",function(){var a=c.children[0];a.children[1].disabled=!a.children[0].files.length}),c.onsubmit=function(a){if(a=a.currentTarget[1].files[0]){var b=a.name;Wh(d,w(b,!0),b,a)}return!1},!0;c.parentNode.removeChild(c)}return!1};
|
||||
k.Ia=function(a,b,c,d){this.B=a;this.w=b;this.b=c;this.j=d;if(a=Uh(this,Cd(this.B,"autoMount")))for(var e in a)e.substr(0,2)==this.type.substr(0,2)&&(this.K[e]=a[e]);Xh(this);this.Mb=Qc(this.b,144,5,65536);Lb(b,this,Yh);Nb(b,this.reset.bind(this));Zh(this,"None","",!0);this.L&&Zh(this,"Local Disk","?");Zh(this,"Remote Disk","??");$h(this)||L(this)};
|
||||
k.Ma=function(a,b){if(!b){if(!a||!this.restore){if(this.reset(),this.B.qc){for(a=0;a<this.g.length;a++)ai(this,a,!0);$h(this,!0)}}else if(!this.restore(a))return!1;if(a=this.D.listDrives){for(;a.firstChild;)a.removeChild(a.firstChild);a.value="";for(b=0;8>b;b++){var c=document.createElement("option");c.value=b;c.text="RK"+b;a.appendChild(c)}a.value="0";Vh(this,0)}}return!0};k.La=function(a){return a?this.save():!0};k.reset=function(){Xh(this)};k.save=function(){return(new U(this)).data()};
|
||||
k.restore=function(a){return Xh(this,a[0])};function $h(a,b){b||(a.F=0);for(var c in a.K){var d=a.K[c],e=d.path||"",f;if(!(f=d.name))a:{if((f=a.D.listDisks)&&f.options)for(var g=0;g<f.options.length;g++){var h=f.options[g];if(h.value==e){f=h.text;break a}}f=w(e,!0)}if(e&&f&&(g=-1,c&&(g=c.charCodeAt(c.length-1)-48,0>g||9<g)&&(g=-1),0<=g&&g<a.g.length)){!bi(a,g,f,e,!0)&&b&&L(a,!1);continue}a.M("Incorrect auto-mount settings for drive "+c+" ("+JSON.stringify(d)+")")}return!!a.F}
|
||||
function Wh(a,b,c,d){var e=a.D.listDrives,e=e&&na(e.value,10);if(void 0===e||0>e||e>=a.g.length)a.M("Unable to load the selected drive");else if(c)if("?"==c)a.M('Use "Choose File" and "Mount" to select and load a local disk.');else{if("??"==c){c=window.prompt("Enter the URL of a remote disk image.","")||"";if(!c)return;b=w(c);a.status("Attempting to load "+c+' as "'+b+'"')}bi(a,e,b,c,!1,d)}else ai(a,e)}
|
||||
function bi(a,b,c,d,e,f){var g=-1,h=a.g[b];h.Pa.toLowerCase()!=d.toLowerCase()&&(g++,ai(a,b,!0),h.zb?a.M("RK11 busy"):(h.zb=!0,e&&(h.yb=!0,a.F++,K(a)&&I(a,"auto-loading disk: "+c)),h.ib=!!f,Nh(new Jh(a,h,"preload"),c,d,f,a.cd)&&g++));return g}
|
||||
k.cd=function(a,b,c,d,e){a.zb=!1;b&&(b.fa>a.fa||b.ka>a.ka)&&(this.M('Disk "'+c+'" too large for drive '+("RK"+a.Bb)),b=null);b?(a.qa=b,a.Xa=c,a.Pa=d,this.M('Loaded disk "'+c+'" in drive '+("RK"+a.Bb),a.yb||e),this.B&&this.B.rb()):a.ib=!1;a.yb&&(a.yb=!1,--this.F||L(this));Vh(this,a.Bb)};
|
||||
function Zh(a,b,c,d){if((a=a.D.listDisks)&&a.options){for(var e=0;e<a.options.length;e++)if(a.options[e].value==c)return;e=document.createElement("option");e.text=b;e.value=c;d&&a.childNodes[0]?a.insertBefore(e,a.childNodes[0]):a.appendChild(e)}}
|
||||
function Vh(a,b){if(0<=b&&b<a.g.length){var c=a.g[b],d=a.D.listDisks;a=a.D.listDrives;if(d&&a&&d.options&&a.options&&(a=na(a.value,10),c=c.ib?"?":c.Pa,!isNaN(a)&&a==b)){for(b=0;b<d.options.length;b++)if(d.options[b].value==c){d.selectedIndex!=b&&(d.selectedIndex=b);break}b==d.options.length&&(d.selectedIndex=0)}}}function ai(a,b,c){var d=a.g[b];if(d.qa||!1===c)d.Xa="",d.Pa="",d.qa=null,d.ib=!1,c||(a.M("Drive RK"+b+" unloaded",c),Vh(a,b))}
|
||||
function Xh(a,b){var c=0;b||(b=[]);a.P=b[c++]||2496;a.v=b[c++]||0;a.f=b[c++]||128;a.I=b[c++]||0;a.H=b[c++]||0;a.A=b[c++]||0;a.N=b[c]||0;for(b=0;b<a.g.length;b++){var d=a.g[b];void 0===d&&(d=a.g[b]={});c=a;d.Bb=b;d.name=c.mb;d.zb=d.ib=!1;d.fa=203;d.ka=2;d.ia=12;d.Ca=512;d.dc=!0;d.od=0;d.md=0;d.nc=1;d.Mc=d.ia;d.rc=d.Ca;d.yd=0;d.Je=null;d.qa||(d.Pa="");d.status=2368}return!0}
|
||||
k.bd=function(a,b,c,d,e,f){this.H=f&65535;this.f=this.f&-49|f>>12&48;this.I=65536-e&65535;this.A=this.A&-16|d&15;a&&(this.v=this.v|a|32768,this.f|=49152);return!0};
|
||||
k.Bc=function(a,b,c,d,e,f,g,h,l){var m=0;a=a.qa;var n=null,r;a||(m=128,e=0);for(;e--;){if(!n){n=a.seek(b,c,d+1);if(!n){m=4096;break}r=0}var u,t;if(0>(u=a.read(n,r++))||0>(t=a.read(n,r++))){m=32;break}if(!h&&($b(this.w,f,u|t<<8),Mc(this.w))){m=1024;break}f+=g;if(r>=a.Ca&&(n=null,++d>=a.ia&&(d=0,++c>=a.ka&&(c=0,++b>=a.fa)))){m=64;break}}return l?l(m,b,c,d,e,f):m};
|
||||
k.dd=function(a,b,c,d,e,f,g,h,l){var m=0;a=a.qa;var n=null,r;a||(m=128,e=0);for(;e--;){var u=ac(this.w,f);if(Mc(this.w)){m=1024;break}f+=g;if(!n){n=a.seek(b,c,d+1,!0);if(!n){m=4096;break}r=0}if(h){var t,C;if(0>(t=a.read(n,r++))||0>(C=a.read(n,r++))){m=32;break}if(u!=(t|C<<8)){m=1;break}}else if(!a.write(n,r++,u&255)||!a.write(n,r++,u>>8)){m=32;break}if(r>=a.Ca&&(n=null,++d>=a.ia&&(d=0,++c>=a.ka&&(c=0,++b>=a.fa)))){m=64;break}}return l?l(m,b,c,d,e,f):m};k.je=function(){return this.P};k.jf=function(){};
|
||||
k.ke=function(){return this.v};k.kf=function(){};k.ge=function(){return this.f&61438};
|
||||
k.ff=function(a){this.f=this.f&-3968|a&3967;if(this.f&1){a=!0;var b,c="",d=(this.A&57344)>>13,e=this.g[d],f,g,h,l,m,n;this.f&=-129;var r=(this.f&14)>>1;switch(r){case 0:K(this)&&I(this,this.type+": CRESET("+d+")",!0);this.v=0;this.f=128;this.A=0;break;case 4:f=(this.A&8160)>>5;K(this)&&I(this,this.type+": SEEK("+f+")",!0);f>=e.fa&&(this.v|=32832,this.f|=49152);break;case 5:c="RCHK";case 2:c||(c="READ"),b=this.Bc;case 3:c||(c="WCHK");case 1:c||(c="WRITE");b||(b=this.dd);f=(this.A&8160)>>5;g=(this.A&
|
||||
16)>>4;h=this.A&15;l=65536-this.I&65535;m=(this.f&48)<<12|this.H;n=this.f&2048?0:2;K(this)&&I(this,this.type+": "+c+"("+f+":"+g+":"+h+") "+p(m)+"-"+p(m+(l-1<<1)),!0,!0);if(f>=e.fa){this.v|=32832;this.f|=49152;break}if(h>=e.ia){this.v|=32800;this.f|=49152;break}a=b.call(this,e,f,g,h,l,m,n,3<=r,this.bd.bind(this));break;case 6:K(this)&&I(this,this.type+": DRESET("+d+")");break;default:K(this)&&I(this,this.type+": UNSUPPORTED("+r+")")}this.P=e.status|(e.qa?128:0)|d<<13|this.A&15;this.v&32768&&K(this)&&
|
||||
I(this,this.type+": ERROR: "+p(this.v)+")");a&&(this.f&=-2,this.f|=128,this.f&64&&Oc(this.b,this.Mb))}};k.le=function(){return this.I};k.lf=function(a){this.I=a};k.fe=function(){return this.H};k.ef=function(a){this.H=a};k.he=function(){return this.A};k.gf=function(a){this.A=a};k.ie=function(){return this.N};k.hf=function(a){this.N=a};
|
||||
var ci={},Yh=(ci[65280]=[null,null,T.prototype.je,T.prototype.jf,"RKDS"],ci[65282]=[null,null,T.prototype.ke,T.prototype.kf,"RKER"],ci[65284]=[null,null,T.prototype.ge,T.prototype.ff,"RKCS"],ci[65286]=[null,null,T.prototype.le,T.prototype.lf,"RKWC"],ci[65288]=[null,null,T.prototype.fe,T.prototype.ef,"RKBA"],ci[65290]=[null,null,T.prototype.he,T.prototype.gf,"RKDA"],ci[65294]=[null,null,T.prototype.ie,T.prototype.hf,"RKDB"],ci);
|
||||
function R(a){z.call(this,"RL11",a,R,131072);this.L=di(this,a.autoMount);this.I=0;this.g=Array(4);this.N=!Pa("Mobi")&&window&&"FileReader"in window}E(R);function di(a,b){if(b&&"string"==typeof b)try{b=eval("("+b+")")}catch(c){x(a.type+" auto-mount error: "+c.message+" ("+b+")"),b=null}return b||{}}k=R.prototype;
|
||||
k.za=function(a,b,c){var d=this;switch(b){case "listDisks":return this.D[b]=c,c.onchange=function(){var a=d.D.descDisk,b=c.options&&c.options[c.selectedIndex];if(a&&b){var g={};if(b=b.getAttribute("data-value"))try{g=eval("("+b+")")}catch(h){x("RL11 option error: "+h.message)}b=g.desc;void 0===b&&(b="");g=g.href;void 0!==g&&(b='<a href="'+g+'" target="_blank">'+b+"</a>");a.innerHTML=b}},!0;case "descDisk":case "listDrives":return this.D[b]=c,c.onchange=function(){var a=na(c.value,10);null!=a&&ei(d,
|
||||
a)},!0;case "loadDisk":return this.D[b]=c,c.onclick=function(){var a=d.D.listDisks;a&&a.options&&fi(d,a.options[a.selectedIndex].text,a.value)},!0;case "bootDisk":return this.D[b]=c,c.onclick=function(){var a,b=d.D.listDrives,b=b&&na(b.value,10);null==b||0>b||b>=d.g.length||!(a=d.g[b])?d.M("Unable to boot the selected drive"):a.qa?(Rd(d.b,0,!0),(a=d.Cc(a,0,0,0,512,0))&&d.M("Unable to read the boot sector ("+a+")")):d.M("Load a disk into the drive first")},!0;case "saveDisk":if(!this.N){c.parentNode.removeChild(c);
|
||||
break}this.D[b]=c;c.onclick=function(){var a=d.D.listDrives;a&&a.options&&d.g&&((a=d.g[na(a.value,10)||0])?(a=a.qa)?(a=Qa(Sh(a),a.uc.replace(".json",".img")),x(a)):d.M("No disk loaded in drive."):d.M("No disk drive selected."))};return!0;case "mountDisk":if(this.N)return this.D[b]=c,c.addEventListener("change",function(){var a=c.children[0];a.children[1].disabled=!a.children[0].files.length}),c.onsubmit=function(a){if(a=a.currentTarget[1].files[0]){var b=a.name;fi(d,w(b,!0),b,a)}return!1},!0;c.parentNode.removeChild(c)}return!1};
|
||||
k.Ia=function(a,b,c,d){this.B=a;this.w=b;this.b=c;this.j=d;if(a=di(this,Cd(this.B,"autoMount")))for(var e in a)e.substr(0,2)==this.type.substr(0,2)&&(this.L[e]=a[e]);gi(this);this.Mb=Qc(this.b,112,5,131072);Lb(b,this,hi);Nb(b,this.reset.bind(this));ii(this,"None","",!0);this.N&&ii(this,"Local Disk","?");ii(this,"Remote Disk","??");ji(this)||L(this)};
|
||||
k.Ma=function(a,b){if(!b){if(!a||!this.restore){if(this.reset(),this.B.qc){for(a=0;a<this.g.length;a++)ki(this,a,!0);ji(this,!0)}}else if(!this.restore(a))return!1;if(a=this.D.listDrives){for(;a.firstChild;)a.removeChild(a.firstChild);a.value="";for(b=0;4>b;b++){var c=document.createElement("option");c.value=b;c.text="RL"+b;a.appendChild(c)}a.value="0";ei(this,0)}}return!0};k.La=function(a){return a?this.save():!0};k.reset=function(){gi(this)};k.save=function(){return(new U(this)).data()};
|
||||
k.restore=function(a){return gi(this,a[0])};function ji(a,b){b||(a.I=0);for(var c in a.L){var d=a.L[c],e=d.path||"",f;if(!(f=d.name))a:{if((f=a.D.listDisks)&&f.options)for(var g=0;g<f.options.length;g++){var h=f.options[g];if(h.value==e){f=h.text;break a}}f=w(e,!0)}if(e&&f&&(g=-1,c&&(g=c.charCodeAt(c.length-1)-48,0>g||9<g)&&(g=-1),0<=g&&g<a.g.length)){!li(a,g,f,e,!0)&&b&&L(a,!1);continue}a.M("Incorrect auto-mount settings for drive "+c+" ("+JSON.stringify(d)+")")}return!!a.I}
|
||||
function fi(a,b,c,d){var e=a.D.listDrives,e=e&&na(e.value,10);if(void 0===e||0>e||e>=a.g.length)a.M("Unable to load the selected drive");else if(c)if("?"==c)a.M('Use "Choose File" and "Mount" to select and load a local disk.');else{if("??"==c){c=window.prompt("Enter the URL of a remote disk image.","")||"";if(!c)return;b=w(c);a.status("Attempting to load "+c+' as "'+b+'"')}li(a,e,b,c,!1,d)}else ki(a,e)}
|
||||
function li(a,b,c,d,e,f){var g=-1,h=a.g[b];h.Pa.toLowerCase()!=d.toLowerCase()&&(g++,ki(a,b,!0),h.zb?a.M("RL11 busy"):(h.zb=!0,e&&(h.yb=!0,a.I++,K(a)&&I(a,"auto-loading disk: "+c)),h.ib=!!f,Nh(new Jh(a,h,"preload"),c,d,f,a.fd)&&g++));return g}
|
||||
k.fd=function(a,b,c,d,e){a.zb=!1;b&&(b.fa>a.fa||b.ka>a.ka)&&(this.M('Disk "'+c+'" too large for drive '+("RL"+a.Bb)),b=null);b?(a.qa=b,a.Xa=c,a.Pa=d,this.M('Loaded disk "'+c+'" in drive '+("RL"+a.Bb),a.yb||e),this.B&&this.B.rb()):a.ib=!1;a.yb&&(a.yb=!1,--this.I||L(this));ei(this,a.Bb)};
|
||||
function ii(a,b,c,d){if((a=a.D.listDisks)&&a.options){for(var e=0;e<a.options.length;e++)if(a.options[e].value==c)return;e=document.createElement("option");e.text=b;e.value=c;d&&a.childNodes[0]?a.insertBefore(e,a.childNodes[0]):a.appendChild(e)}}
|
||||
function ei(a,b){if(0<=b&&b<a.g.length){var c=a.g[b],d=a.D.listDisks;a=a.D.listDrives;if(d&&a&&d.options&&a.options&&(a=na(a.value,10),c=c.ib?"?":c.Pa,!isNaN(a)&&a==b)){for(b=0;b<d.options.length;b++)if(d.options[b].value==c){d.selectedIndex!=b&&(d.selectedIndex=b);break}b==d.options.length&&(d.selectedIndex=0)}}}function ki(a,b,c){var d=a.g[b];if(d.qa||!1===c)d.Xa="",d.Pa="",d.qa=null,d.ib=!1,c||(a.M("Drive RL"+b+" unloaded",c),ei(a,b))}
|
||||
function gi(a,b){var c=0;b||(b=[]);a.f=b[c++]||129;a.K=b[c++]||0;a.v=b[c++]||0;a.A=b[c++]||0;a.H=b[c++]||0;a.F=b[c]||0;for(b=0;b<a.g.length;b++){var d=a.g[b];void 0===d&&(d=a.g[b]={});c=a;d.Bb=b;d.name=c.mb;d.zb=d.ib=!1;d.fa=512;d.ka=2;d.ia=40;d.Ca=256;d.dc=!0;d.od=0;d.md=0;d.nc=1;d.Mc=d.ia;d.rc=d.Ca;d.yd=0;d.Je=null;d.qa||(d.Pa="");d.status=29}return!0}
|
||||
k.ed=function(a,b,c,d,e,f){this.K=f&65535;this.f=this.f&-49|f>>12&48;this.F=f>>16&63;this.A=this.v=b<<7|(c?64:0)|d&63;this.H=65536-e&65535;a&&(this.f=this.f|a|32768);return!0};
|
||||
k.Cc=function(a,b,c,d,e,f,g){var h=0;a=a.qa;var l=null,m;a||(h=5120,e=0);for(;e--;){if(!l){l=a.seek(b,c,d+1);if(!l){h=5120;break}m=0}var n,r;if(0>(n=a.read(l,m++))||0>(r=a.read(l,m++))){h=5120;break}$b(this.w,this.b.Ja(f),n|r<<8);if(Mc(this.w)){h=8192;break}f+=2;if(m>=a.Ca&&(l=null,++d>=a.ia&&(d=0,++c>=a.ka&&(c=0,++b>=a.fa)))){h=5120;break}}return g?g(h,b,c,d,e,f):h};
|
||||
k.gd=function(a,b,c,d,e,f,g){var h=0;a=a.qa;var l=null,m;a||(h=5120,e=0);for(;e--;){var n=ac(this.w,this.b.Ja(f));if(Mc(this.w)){h=8192;break}f+=2;if(!l){l=a.seek(b,c,d+1,!0);if(!l){h=5120;break}m=0}if(!a.write(l,m++,n&255)||!a.write(l,m++,n>>8)){h=5120;break}if(m>=a.Ca&&(l=null,++d>=a.ia&&(d=0,++c>=a.ka&&(c=0,++b>=a.fa)))){h=5120;break}}return g?g(h,b,c,d,e,f):h};k.oe=function(){return this.f&65535};
|
||||
k.pf=function(a){this.f=this.f&-1023|a&1022;this.F=this.F&60|(a&48)>>4;if(!(this.f&128)){a=!0;var b,c="",d=this.g[(this.f&768)>>8],e=d.qa,f,g,h;this.f&=-2;switch(this.f&14){case 4:this.H&8&&(this.f&=63);this.H=d.status|this.A&64|(e&&512==e.fa?128:0);break;case 6:1==(this.v&3)&&(b=this.v&65408,c=(this.v&16)<<2,this.A=this.v&4?this.A+b:this.A-b,this.v=this.A=this.A&65408|c);break;case 8:this.H=this.A;break;case 12:c="READ",b=this.Cc;case 10:c||(c="WRITE"),b||(b=this.gd),f=this.v>>7,g=this.v&64?1:0,
|
||||
h=this.v&63,!e||f>=e.fa||h>=e.ia?this.f|=37888:(a=65536-this.H&65535,e=(this.F&63)<<16|this.K,K(this)&&I(this,this.type+": "+c+"("+f+":"+g+":"+h+") "+p(e)+"-"+p(e+(a-1<<1)),!0,!0),a=b.call(this,d,f,g,h,a,e,this.ed.bind(this)))}a&&(this.f|=129,this.f&64&&Oc(this.b,this.Mb))}};k.me=function(){return this.K};k.mf=function(a){this.K=a&65534};k.pe=function(){return this.v};k.qf=function(a){this.v=a};k.qe=function(){return this.H};k.rf=function(a){this.H=a};k.ne=function(){return this.F};
|
||||
k.nf=function(a){this.F=a&63;this.f=this.f&-49|(this.F&3)<<4};var mi={},hi=(mi[63744]=[null,null,R.prototype.oe,R.prototype.pf,"RLCS"],mi[63746]=[null,null,R.prototype.me,R.prototype.mf,"RLBA"],mi[63748]=[null,null,R.prototype.pe,R.prototype.qf,"RLDA"],mi[63750]=[null,null,R.prototype.qe,R.prototype.rf,"RLMP"],mi[63752]=[null,null,R.prototype.ne,R.prototype.nf,"RLBE"],mi);function ni(a){z.call(this,"Debugger",a,ni);this.ma=a.base||16;this.Ga=!1;this.K=0;this.T=!1;this.A=-1;this.g=[];this.ca={}}E(ni);
|
||||
var oi={"||":0,"&&":1,"|":2,"^":3,"&":4,"!=":5,"==":5,">=":6,">":6,"<=":6,"<":6,">>>":7,">>":7,"<<":7,"-":8,"+":8,"%":9,"/":9,"*":9};ni.prototype.Qc=function(){return-1};ni.prototype.Rc=function(){};ni.prototype.Sc=function(){};
|
||||
function pi(a,b,c,d){if(c)if(b){0>a.A&&a.g.length&&(a.A=0);if(0>a.A||b!=a.g[a.A])a.g.splice(0,0,b),a.A=0;a.A--}else a.T?b="end":b=a.g[a.A+1];a=[];if(b){b=b.replace(/""/g,"'");c=0;var e=null;d=d||";";for(var f=0;f<=b.length;f++){var g=b.charAt(f);if('"'==g||"'"==g)e?g==e&&(e=null):e=g;else if(g==d&&!e||!g)a.push(za(b.substring(c,f))),c=f+1}}return a}
|
||||
function qi(a,b,c){for(c=c||-1;c--&&b.length;){var d=b.pop();if(2>a.length)return!1;var e=a.pop(),f=a.pop();switch(d){case "*":d=f*e;break;case "/":if(!e)return!1;d=f/e;break;case "%":if(!e)return!1;d=f%e;break;case "+":d=f+e;break;case "-":d=f-e;break;case "<<":d=f<<e;break;case ">>":d=f>>e;break;case ">>>":d=f>>>e;break;case "<":d=f<e?1:0;break;case "<=":d=f<=e?1:0;break;case ">":d=f>e?1:0;break;case ">=":d=f>=e?1:0;break;case "==":d=f==e?1:0;break;case "!=":d=f!=e?1:0;break;case "&":d=f&e;break;
|
||||
var Db="undefined"!==typeof ArrayBuffer,Eb="UNKNOWN PANIC ABORT ILLEGAL RED YELLOW FAULT TRACE HALT OPCODE INTERRUPT".split(" "),Fb={48:"DL11R",52:"DL11X",56:"PC11R",60:"PC11X",64:"KW11",112:"RL11",144:"RK11"},Gb={cpu:1,trap:2,fault:4,"int":8,bus:16,memory:32,mmu:64,rom:128,device:256,panel:512,keyboard:1024,key:2048,pc11:4096,paper:4096,disk:8192,read:16384,write:32768,rk11:65536,rl11:131072,dl11:262144,serial:262144,kw11:524288,timer:524288,speaker:16777216,computer:33554432,log:268435456,warn:536870912,
|
||||
buffer:1073741824,halt:-2147483648};function Hb(a){z.call(this,"Panel",a,Hb,512);this.Da=this.v=this.nb=this.Hb=this.A=this.F=0;this.I=this.K=this.G=!1;this.L=Ib;this.g={};this.f={START:[1,1,!0,!1,this.Vd],STEP:[1,1,!1,!1,this.Wd],ENABLE:[1,1,!1,!1,this.Rd],CONT:[1,1,!0,!1,this.Pd],DEP:[0,0,!0,!1,this.Qd],EXAM:[1,1,!0,!1,this.Sd],LOAD:[1,1,!0,!1,this.Ud],TEST:[0,0,!0,!1,this.Td]};for(a=0;22>a;a++)this.f["S"+a]=[0,0,!1,!1,this.Xd,a]}E(Hb);var Ib=7;function Jb(a,b){return a.f[b]&&a.f[b][1]}h=Hb.prototype;
|
||||
h.reset=function(){this.stop()};
|
||||
h.xa=function(a,b,c,d){if(this.B&&this.B.xa(a,b,c,d)||this.b&&this.b.xa(a,b,c,d)||this.i&&this.i.xa(a,b,c,d))return!0;switch(b){case "R0":case "R1":case "R2":case "R3":case "R4":case "R5":case "R6":case "R7":case "NF":case "ZF":case "VF":case "CF":case "PS":return this.D[b]=c,this.F++,!0;default:return"led"==a||"rled"==a?(this.D[b]=c,this.g[b]=d?1:0,this.F++,!0):"switch"==a?(void 0===this.f[b]&&(this.f[b]=[d?1:0,d?1:0]),this.D[b]=c,a=c.parentElement||c,a=a.parentElement||a,a.onmousedown=function(a,
|
||||
b){return function(){Kb(a,b)}}(this,b),a.onmouseup=a.onmouseout=function(a,b){return function(){Lb(a,b)}}(this,b),a.ontouchstart=function(a,b){return function(c){Kb(a,b);c.preventDefault()}}(this,b),a.ontouchend=function(a,b){return function(){Lb(a,b)}}(this,b),!0):this.parent.xa.call(this,a,b,c,d)}};h.Ia=function(a,b,c,d){this.B=a;this.w=b;this.b=c;this.i=d;Mb(b,this,Nb);Ob(b,this.reset.bind(this));Pb(this);Qb(this)};h.La=function(a,b){b||(Rb(),this.reset());return!0};h.Ka=function(){return!0};
|
||||
function Sb(a,b,c){if(a=a.D[b])a.style.backgroundColor=c?"#ff0000":"#000000"}function Pb(a,b){for(var c in a.g)Sb(a,c,null!=b?b:a.g[c])}function Tb(a,b,c){if(a=a.D[b])a.style.marginTop=c?"0px":"20px",a.style.backgroundColor=c?"#00ff00":"#228B22"}function Qb(a){for(var b in a.f)Tb(a,b,a.f[b][1])}function Ub(a,b,c,d){a.D[b]&&(void 0===c&&(Cb(a,"Value for "+b+" is invalid"),a.b.ea()),c=8==(a.i&&a.i.na||8)?p(c,d):q(c,d),a.D[b].textContent!=c&&(a.D[b].textContent=c))}
|
||||
function Kb(a,b){var c=a.f[b];Tb(a,b,c[1]=1-c[1]);c[3]=!0;c[4]&&c[4].call(a,c[1],c[5]);"STEP"!=b&&(a.I="DEP"==b,a.K="EXAM"==b)}function Lb(a,b){var c=a.f[b];c[2]&&c[3]&&(Tb(a,b,c[1]=c[0]),c[4]&&c[4].call(a,c[1],c[5]));c[3]=!1}h.Vd=function(a){a||this.b.C.U||(a=this.b,a.w.reset(),Vb(a),Jb(this,"ENABLE")&&this.b.pb())};h.Wd=function(){};h.Rd=function(a){a||this.b.ea()};
|
||||
h.Pd=function(a){if(!a&&!this.b.C.U)if(Jb(this,"ENABLE"))this.b.pb();else{if((a=this.i)&&!ub(a,!0))tb(a,!0),a.xb(0,null),tb(a,!1);else try{var b=this.b.xb(1);0<b&&(Wb(this.b,b),Xb(this.b,b,!0),Yb(this.b,b))}catch(c){"number"!=typeof c&&Cb(this.b,c.stack||c.message)}this.stop();this.B&&this.B.ya()}};h.Qd=function(a){if(a&&!this.b.C.U)if(this.I&&Zb(this),a=$b(this,this.nb),this.L==Ib)this.w.Mb(this.Da,a);else{var b=this.b,c=this.Da;b.K++;b.w.Sa(ac(b,c,4),a);b.K--}};
|
||||
h.Sd=function(a){a||this.b.C.U||(this.K&&Zb(this),a=this.L==Ib?this.w.Eb(this.Da):bc(this.b,this.Da),$b(this,a))};h.Ud=function(a){a||this.b.C.U||cc(this,this.nb)};h.Td=function(a){a?(this.G=!0,Pb(this,!0)):(this.G=!1,Pb(this),dc(this,0))};h.Xd=function(a,b){this.nb=a?this.nb|1<<b:this.nb&~(1<<b)};function Zb(a){var b=1145>a.b.gb?8:16,c=65472<=a.Da&&a.Da<65472+b,b=c?1:2,c=c?15:a.w.Vb;Jb(a,"STEP")||(b=-b);cc(a,a.Da&~c|a.Da+b&c)}
|
||||
function cc(a,b){a.Da=b&a.w.Vb;b=a.Da;for(var c=0;22>c;c++)qc(a,"A"+c,b&1<<c)}function $b(a,b){a.v=b&65535;b=a.v;for(var c=0;16>c;c++)qc(a,"D"+c,b&1<<c);return a.v}function qc(a,b,c){a.g[b]=c;a.G||Sb(a,b,c)}function rc(a){return void 0!==a.D.S0}function dc(a,b){if(rc(a)){a.nb=b;for(var c=0;22>c;c++)a.f["S"+c][1]=b&1<<c?1:0;Qb(a)}}h.stop=function(){cc(this,this.b.u[7])};h.Dc=function(a){this.Da=a};h.setData=function(a,b){b?this.Hb=a:this.v=a};h.Yd=function(a,b){return(b?this.Hb:this.nb)&65535};
|
||||
h.af=function(a){this.Hb=a};var sc={},Nb=(sc[65400]=[null,null,Hb.prototype.Yd,Hb.prototype.af,"CNSW"],sc);function Rb(){for(var a=!1,b=G(document,"pdp11","panel"),c=0;c<b.length;c++){var d=b[c],e=F(d),f=qb(e.id);f||(a=!0,f=new Hb(e));sb(f,d);a&&K(f)}}db(Rb);
|
||||
function tc(a,b,c){z.call(this,"Bus",a,tc,16);this.b=b;this.i=c;this.N=a.busWidth||16;this.A=1<<this.N;this.Vb=this.A-1;this.Ja=uc;this.Ba=Math.log2(this.Ja);this.L=this.Ja>>2;this.w=this.Ja-1;this.v=this.A/this.Ja|0;this.Ua=[];this.ta=0;this.B=!1;this.F=[];this.xd=[vc,wc,xc,yc];a=new L(this);zc(a,this.i);this.ga=Array(this.v);this.f=Array(this.v);for(b=0;b<this.v;b++)this.ga[b]=this.f[b]=a;this.Ha=this.A-uc;Ac(this,this.Ha,uc,Bc,this);this.K=this.I=(this.Ha&this.Vb)>>>this.Ba;this.G=0;this.g=this.Vb;
|
||||
K(this)}E(tc);var uc=8192,Cc=uc-1;function vc(a,b){var c=-1,d=this.controller,e=d.Ua[a],f=b&65535;e?e[0]?c=e[0](f):e[2]&&(c=f&1?e[2](f&-2)>>8:e[2](f)&255):f&1&&(e=d.Ua[a&-2])&&(e[2]?c=e[2](f&-2)>>8:e[0]&&(c=e[0](f)));if(0<=c)return this.i&&I(this.i,16|e[5])&&H(this.i,e[4]+".readByte("+M(this.i,b)+"): "+M(this.i,c),!0,!d.ta),c;d.Ra(b,16,3);c=255;this.i&&I(this.i,16)&&H(this.i,"warning: unconverted read access to byte @"+M(this.i,b)+": "+M(this.i,c),!0,!d.ta);return c}
|
||||
function wc(a,b,c){var d=!1,e=this.controller,f=e.Ua[a],g=c&65535;if(f)if(f[1])f[1](b,g),d=!0;else{if(f[3]){a=f[2]?f[2](g,!0):0;if(g&1)f[3](a&255|b<<8,g&-2);else f[3](a&-256|b,g);d=!0}}else g&1&&(f=e.Ua[a&-2])&&(f[3]?(g&=-2,a=f[2]?f[2](g,!0):0,f[3](a&255|b<<8,g),d=!0):f[1]&&(f[1](b,g),d=!0));d?this.i&&I(this.i,16|f[5])&&H(this.i,f[4]+".writeByte("+M(this.i,c)+","+M(this.i,b)+")",!0,!e.ta):(e.Ra(c,16,5),this.i&&I(this.i,16)&&H(this.i,"warning: unconverted write access to byte @"+M(this.i,c)+": "+M(this.i,
|
||||
b),!0,!e.ta))}function xc(a,b){var c=-1,d=this.controller;a=d.Ua[a];var e=b&65535;a&&(a[2]?c=a[2](e):a[0]&&(c=a[0](e)|a[0](e+1)<<8));if(0<=c)return this.i&&I(this.i,16|a[5])&&H(this.i,a[4]+".readWord("+M(this.i,b)+"): "+M(this.i,c),!0,!d.ta),c;d.Ra(b,16,2);c=65535;this.i&&I(this.i,16)&&H(this.i,"warning: unconverted read access to word @"+M(this.i,b)+": "+M(this.i,c),!0,!d.ta);return c}
|
||||
function yc(a,b,c){var d=!1,e=this.controller;a=e.Ua[a];var f=c&65535;a&&(a[3]?(a[3](b,f),d=!0):a[1]&&(a[1](b&255,f),a[1](b>>8,f+1),d=!0));d?this.i&&I(this.i,16|a[5])&&H(this.i,a[4]+".writeWord("+M(this.i,c)+","+M(this.i,b)+")",!0,!e.ta):(e.Ra(c,16,4),this.i&&I(this.i,16)&&H(this.i,"warning: unconverted write access to word @"+M(this.i,c)+": "+M(this.i,b),!0,!e.ta))}
|
||||
function Dc(a,b){if(b!=a.G){for(var c=0;c<a.v;c++)a.f[c]=a.ga[c];a.G=0;a.g=a.Vb;b&&(a.G=b,b=1<<b,a.g=b-1,b-=uc,a.K=(b&a.g)>>>a.Ba,a.f[a.K]=a.ga[a.I])}}h=tc.prototype;h.reset=function(){for(var a=0;a<this.F.length;a++)this.F[a]();Dc(this,16)};h.La=function(a,b){b||this.reset();return!0};
|
||||
function Ac(a,b,c,d,e){for(var f=b,g=c,k=f>>>a.Ba;0<g&&k<a.ga.length;){var l=a.ga[k],m=k*a.Ja,n=a.Ja-(f-m);n>g&&(n=g);if(!e&&l&&l.size){if(l.type==d){if(f+g<=l.H)return l.$b+=l.H-f,l.H=f,!0;if(f>=l.H+l.$b){n=l.size-(f-m);n>g&&(n=g);l.$b=f-l.H+n;f=m+a.Ja;g-=n;k++;continue}}return Ec(1,f,g)}f=new L(a,f,n,a.Ja,d,e);zc(f,a.i,l);a.ga[k++]=f;f=m+a.Ja;g-=n}return 0>=g?(a.status((c>>10)+"Kb "+Fc[d]+" at "+p(b)),!0):Ec(2,b,c)}h.cb=function(a){return this.f[(a&this.g)>>>this.Ba].lc(a&this.w,a)};
|
||||
h.ia=function(a){return this.f[(a&this.g)>>>this.Ba].Ca(a&this.w,a)};h.ob=function(a,b){this.f[(a&this.g)>>>this.Ba].oc(a&this.w,b,a)};h.Sa=function(a,b){this.f[(a&this.g)>>>this.Ba].gc(a&this.w,b,a)};function Gc(a,b){return a.ga[(b&a.Vb)>>>a.Ba]}h.kc=function(a){this.B=!1;this.ta++;a=Gc(this,a).I(a&this.w,a);this.ta--;return a};h.Eb=function(a){this.B=!1;this.ta++;a=Gc(this,a).K(a&this.w,a);this.ta--;return a};h.Lb=function(a,b){this.B=!1;this.ta++;Gc(this,a).G(a&this.w,b&255,a);this.ta--};
|
||||
h.Mb=function(a,b){this.B=!1;this.ta++;Gc(this,a).N(a&this.w,b&65535,a);this.ta--};h.uc=function(a,b){this.ga[a>>>this.Ba].Bb(a&this.w,b)};h.Kb=function(a,b){a=this.ga[a>>>this.Ba];b?--a.g||(a.oc=a.f?a.v:a.G,a.gc=a.f?a.L:a.N):--a.B||(a.lc=a.I,a.Ca=a.K)};
|
||||
function Hc(a){for(var b=0,c=[],d=0;d<a.v;d++){var e=a.ga[d];if(e.kb||e.Gd){c[b++]=d;var f=b++;if(e=e.save()){for(var g=0,k=0,l=[];g<e.length;){for(var m=e[g],n=g+1;n<e.length&&e[n]===m;)n++;l[k++]=n-g;l[k++]=m;g=n}l.length<e.length&&(e=l)}c[f]=e}}return c}function Ic(a){for(var b=Jc,c=0,d=0;d<a.ga.length;d++){var e=a.ga[d];e.type==b&&(c=e.H+e.$b)}return c}
|
||||
function Kc(a,b,c,d,e,f,g,k,l){for(var m=b==c?-1:0;b<=c;b+=2){var n=b&Cc;if(void 0!==a.Ua[n])return x("I/O address already registered: "+q(b,8,!0)),!1;var r=l||"unknown";r&&0<=m&&(r+=m++);a.Ua[n]=[d,e,f,g,r,k||16,!1]}return!0}
|
||||
function Mb(a,b,c,d){for(var e in c){var f=+e+(d||0),g=c[e];if(!(g[6]&&g[6]>a.b.gb)){var k=g[0]?g[0].bind(b):null,l=g[1]?g[1].bind(b):null,m=g[2]?g[2].bind(b):null,n=g[3]?g[3].bind(b):null;65472<=f&&65487>=f&&(!k&&m&&(k=function(a){return function(b){return a(b)&255}.bind(b)}(m)),!l&&n&&(l=function(a){return function(b,c){return a(b,c)}.bind(b)}(n)));for(var r=g[4],u=g[5]||1,t=0;t<u;t++,f+=2)if(r&&1<u&&(r=g[4]+t),!Kc(a,f,f,k,l,m,n,g[7]||b.ra,r||b.qb))return!1}}return!0}
|
||||
h.jc=function(a){var b=null;a>=this.Ha&&(a=this.Ua[a&Cc])&&(b=a[4]);return b};function Ob(a,b){a.F.push(b)}h.Ra=function(a,b,c){this.B=!0;this.ta||(this.i&&I(this.i,4)&&H(this.i,"memory fault ("+c+") on "+M(this.i,a),!0,!0),b&&(this.b.qa|=b),this.b.ua(4,0,a))};function Lc(a){var b=a.B;a.B=!1;return b}function Ec(a,b,c){x("Memory block error ("+a+": "+q(b)+","+q(c)+")");return!1}function N(a){z.call(this,"Device",a,N,256);this.f={Ug:0,Ec:-1}}E(N);h=N.prototype;
|
||||
h.Ia=function(a,b,c,d){this.w=b;this.B=a;this.b=c;this.i=d;var e=this;this.f.Ec=Mc(c,function(){e.f.Ub|=128;e.f.Ub&64&&Nc(e.b,e.f.Tb);e.B&&e.B.ya(1);Oc(e.b,e.f.Ec,1E3/60)});this.f.Tb=Pc(c,64,6,524288);Mb(b,this,Qc);Ob(b,this.reset.bind(this));d&&Rc(d,64,function(a){var b=e.b;O(e,"KIPDR",b.R[0],0,a[0]);O(e,"KDPDR",b.R[0],8,a[0]);O(e,"KIPAR",b.fa[0],0,a[0]);O(e,"KDPAR",b.fa[0],8,a[0],!0);O(e,"SIPDR",b.R[1],0,a[0]);O(e,"SDPDR",b.R[1],8,a[0]);O(e,"SIPAR",b.fa[1],0,a[0]);O(e,"SDPAR",b.fa[1],8,a[0],!0);
|
||||
O(e,"UIPDR",b.R[3],0,a[0]);O(e,"UDPDR",b.R[3],8,a[0]);O(e,"UIPAR",b.fa[3],0,a[0]);O(e,"UDPAR",b.fa[3],8,a[0],!0);b.Ma&32&&O(e,"UNIMAP",b.Jb,-1,a[0])});K(this)};function O(a,b,c,d,e,f){a=a.i;if(!(e&&0>b.indexOf(e.toUpperCase()))){e=8;var g="",k=!1,l=0,m=8;0>d&&(e=c.length,d=0,k=!0,m=l=4);for(var n=0;n<e;n++)n%m||(g&&(g+="\n"),g+=b+(k?"["+p(n,2)+"]":"")+":"),g+=" "+M(a,c[d+n],l);a.j(g+(f?"\n":""))}}h.reset=function(){this.f.Ub=128;Oc(this.b,this.f.Ec,1E3/60,!0)};h.ee=function(){return this.f.Ub};
|
||||
h.hf=function(a){this.f.Ub=a&192;this.f.Ub&64||Sc(this.b,this.f.Tb)};h.ge=function(){return ad(this.b)};h.kf=function(a){bd(this.b,a&-129|this.b.Ea&128)};h.he=function(){return cd(this.b)};h.ie=function(){return dd(this.b)};h.je=function(){return this.b.Ma};h.lf=function(a){ed(this.b,a)};h.Re=function(a){a=a>>1&63;var b=this.b.Jb[a>>1];return a&1?b>>16:b&65535};h.Uf=function(a,b){b=b>>1&63;var c=b>>1;this.b.Jb[c]=b&1?this.b.Jb[c]&65535|(a&63)<<16:this.b.Jb[c]&-65536|a&65534};
|
||||
h.Ke=function(a){return this.b.R[1][a>>1&7]};h.Nf=function(a,b){this.b.R[1][b>>1&7]=a&65295};h.Ie=function(a){return this.b.R[1][(a>>1&7)+8]};h.Lf=function(a,b){this.b.R[1][(b>>1&7)+8]=a&65295};h.Je=function(a){return this.b.fa[1][a>>1&7]};h.Mf=function(a,b){b=b>>1&7;this.b.fa[1][b]=a;this.b.R[1][b]&=65295};h.He=function(a){return this.b.fa[1][(a>>1&7)+8]};h.Kf=function(a,b){b=(b>>1&7)+8;this.b.fa[1][b]=a;this.b.R[1][b]&=65295};h.de=function(a){return this.b.R[0][a>>1&7]};
|
||||
h.gf=function(a,b){this.b.R[0][b>>1&7]=a&65295};h.be=function(a){return this.b.R[0][(a>>1&7)+8]};h.ef=function(a,b){this.b.R[0][(b>>1&7)+8]=a&65295};h.ce=function(a){return this.b.fa[0][a>>1&7]};h.ff=function(a,b){b=b>>1&7;this.b.fa[0][b]=a;this.b.R[0][b]&=65295};h.ae=function(a){return this.b.fa[0][(a>>1&7)+8]};h.df=function(a,b){b=(b>>1&7)+8;this.b.fa[0][b]=a;this.b.R[0][b]&=65295};h.Qe=function(a){return this.b.R[3][a>>1&7]};h.Tf=function(a,b){this.b.R[3][b>>1&7]=a&65295};
|
||||
h.Oe=function(a){return this.b.R[3][(a>>1&7)+8]};h.Rf=function(a,b){this.b.R[3][(b>>1&7)+8]=a&65295};h.Pe=function(a){return this.b.fa[3][a>>1&7]};h.Sf=function(a,b){b=b>>1&7;this.b.fa[3][b]=a;this.b.R[3][b]&=65295};h.Ne=function(a){return this.b.fa[3][(a>>1&7)+8]};h.Qf=function(a,b){b=(b>>1&7)+8;this.b.fa[3][b]=a;this.b.R[3][b]&=65295};h.Yb=function(a){a&=7;return this.b.O&2048?this.b.hb[a]:this.b.u[a]};h.ac=function(a,b){b&=7;this.b.O&2048?this.b.hb[b]=a:this.b.u[b]=a};
|
||||
h.oe=function(){return this.b.O&49152?this.b.Na[0]:this.b.u[6]};h.rf=function(a){this.b.O&49152?this.b.Na[0]=a:this.b.u[6]=a};h.re=function(){return this.b.u[7]};h.uf=function(a){this.b.u[7]=a};h.Zb=function(a){a&=7;return this.b.O&2048?this.b.u[a]:this.b.hb[a]};h.bc=function(a,b){b&=7;this.b.O&2048?this.b.u[b]=a:this.b.hb[b]=a};h.pe=function(){return 1==(this.b.O&49152)>>14?this.b.u[6]:this.b.Na[1]};h.sf=function(a){1==(this.b.O&49152)>>14?this.b.u[6]=a:this.b.Na[1]=a};
|
||||
h.qe=function(){return 3==(this.b.O&49152)>>14?this.b.u[6]:this.b.Na[3]};h.tf=function(a){3==(this.b.O&49152)>>14?this.b.u[6]=a:this.b.Na[3]=a};h.$d=function(a){return this.b.Bc[a-65504>>1]};h.cf=function(a,b){this.b.Bc[b-65504>>1]=a};h.cd=function(a){return 65520==a?(Ic(this.w)>>6)-1:0};h.hd=function(){};h.Me=function(){return 1};h.Pf=function(){};h.Zd=function(){return this.b.qa};h.bf=function(){this.b.qa=0};h.fe=function(){return this.b.Ac};h.jf=function(a,b){b&1||(a&=255);this.b.Ac=a};
|
||||
h.ke=function(a,b){return b?0:this.b.Ib};h.mf=function(a){fd(this.b,a)};h.Le=function(a,b){return b?0:this.b.mb&65280};h.Of=function(a){this.b.mb=a|255};h.ne=function(){return gd(this.b)};h.qf=function(a){hd(this.b,a)};h.gd=function(a,b){I(this)&&H(this,"writeIgnored("+p(b)+"): "+p(a),!0,!0)};
|
||||
var P={},Qc=(P[61568]=[null,null,N.prototype.Re,N.prototype.Uf,"UNIMAP",64,1170],P[62592]=[null,null,N.prototype.Ke,N.prototype.Nf,"SIPDR",8,1145,64],P[62608]=[null,null,N.prototype.Ie,N.prototype.Lf,"SDPDR",8,1145,64],P[62624]=[null,null,N.prototype.Je,N.prototype.Mf,"SIPAR",8,1145,64],P[62640]=[null,null,N.prototype.He,N.prototype.Kf,"SDPAR",8,1145,64],P[62656]=[null,null,N.prototype.de,N.prototype.gf,"KIPDR",8,1145,64],P[62672]=[null,null,N.prototype.be,N.prototype.ef,"KDPDR",8,1145,64],P[62688]=
|
||||
[null,null,N.prototype.ce,N.prototype.ff,"KIPAR",8,1145,64],P[62704]=[null,null,N.prototype.ae,N.prototype.df,"KDPAR",8,1145,64],P[62798]=[null,null,N.prototype.je,N.prototype.lf,"MMR3",1,1145,64],P[65382]=[null,null,N.prototype.ee,N.prototype.hf,"LKS"],P[65402]=[null,null,N.prototype.ge,N.prototype.kf,"MMR0",1,1145,64],P[65404]=[null,null,N.prototype.he,N.prototype.gd,"MMR1",1,1145,64],P[65406]=[null,null,N.prototype.ie,N.prototype.gd,"MMR2",1,1145,64],P[65408]=[null,null,N.prototype.Qe,N.prototype.Tf,
|
||||
"UIPDR",8,1145,64],P[65424]=[null,null,N.prototype.Oe,N.prototype.Rf,"UDPDR",8,1145,64],P[65440]=[null,null,N.prototype.Pe,N.prototype.Sf,"UIPAR",8,1145,64],P[65456]=[null,null,N.prototype.Ne,N.prototype.Qf,"UDPAR",8,1145,64],P[65472]=[null,null,N.prototype.Yb,N.prototype.ac,"R0SET0"],P[65473]=[null,null,N.prototype.Yb,N.prototype.ac,"R1SET0"],P[65474]=[null,null,N.prototype.Yb,N.prototype.ac,"R2SET0"],P[65475]=[null,null,N.prototype.Yb,N.prototype.ac,"R3SET0"],P[65476]=[null,null,N.prototype.Yb,
|
||||
N.prototype.ac,"R4SET0"],P[65477]=[null,null,N.prototype.Yb,N.prototype.ac,"R5SET0"],P[65478]=[null,null,N.prototype.oe,N.prototype.rf,"R6KERNEL"],P[65479]=[null,null,N.prototype.re,N.prototype.uf,"R7KERNEL"],P[65480]=[null,null,N.prototype.Zb,N.prototype.bc,"R0SET1",1,1145],P[65481]=[null,null,N.prototype.Zb,N.prototype.bc,"R1SET1",1,1145],P[65482]=[null,null,N.prototype.Zb,N.prototype.bc,"R2SET1",1,1145],P[65483]=[null,null,N.prototype.Zb,N.prototype.bc,"R3SET1",1,1145],P[65484]=[null,null,N.prototype.Zb,
|
||||
N.prototype.bc,"R4SET1",1,1145],P[65485]=[null,null,N.prototype.Zb,N.prototype.bc,"R5SET1",1,1145],P[65486]=[null,null,N.prototype.pe,N.prototype.sf,"R6SUPER",1,1145],P[65487]=[null,null,N.prototype.qe,N.prototype.tf,"R6USER",1,1145],P[65504]=[null,null,N.prototype.$d,N.prototype.cf,"CTRL",8,1170],P[65520]=[null,null,N.prototype.cd,N.prototype.hd,"LSIZE",1,1170],P[65522]=[null,null,N.prototype.cd,N.prototype.hd,"HSIZE",1,1170],P[65524]=[null,null,N.prototype.Me,N.prototype.Pf,"SYSID",1,1170],P[65526]=
|
||||
[null,null,N.prototype.Zd,N.prototype.bf,"CPUERR",1,1170],P[65528]=[null,null,N.prototype.fe,N.prototype.jf,"MB",1,1170],P[65530]=[null,null,N.prototype.ke,N.prototype.mf,"PIR"],P[65532]=[null,null,N.prototype.Le,N.prototype.Of,"SL"],P[65534]=[null,null,N.prototype.ne,N.prototype.qf,"PSW"],P);
|
||||
db(function(){for(var a=G(document,"pdp11","device"),b=0;b<a.length;b++){var c,d=a[b];c=F(d);switch(c.type){case "default":c=new N(c);sb(c,d);break;case "pc11":c=new id(c);sb(c,d);break;case "rl11":c=new Q(c);sb(c,d);break;case "rk11":c=new R(c),sb(c,d)}}});var jd;if(Db){var kd=new ArrayBuffer(2);(new DataView(kd)).setUint16(0,256,!0);jd=256===(new Uint16Array(kd))[0]}else jd=!1;var ld=jd;
|
||||
function L(a,b,c,d,e,f){this.w=a;this.id=md+=2;this.b=null;this.H=b;this.$b=c;this.size=d||0;this.type=e||nd;this.f=e==od;this.controller=null;zc(this);this.kb=this.Gd=!1;if(this.size)if(f)this.controller=f,a=[null,0],this.b=a[0],pd(this,f.xd);else if(Db)this.A=new ArrayBuffer(this.size),this.F=new DataView(this.A,0,this.size),this.D=new Uint8Array(this.A,0,this.size),this.P=new Uint16Array(this.A,0,this.size>>1),this.b=new Int32Array(this.A,0,this.size>>2),pd(this,ld?qd:rd);else{a=this.b=Array(this.size>>
|
||||
2);for(f=0;f<a.length;f++)a[f]=0;pd(this,sd)}else pd(this)}var nd=0,Jc=1,od=2,Bc=4,Fc=["NONE","RAM","ROM","VID","H/W"],md=0;
|
||||
L.prototype={constructor:L,parent:null,save:function(){var a,b;if(this.controller)a=null;else if(Db)for(a=Array(this.size>>2),b=0;b<a.length;b++)a[b]=this.F.getInt32(b<<2,!0);else a=this.b;return a},restore:function(a){if(this.controller)return!a;if(a&&this.size==a.length<<2){var b;if(Db)for(b=0;b<a.length;b++)this.F.setInt32(b<<2,a[b],!0);else this.b=a;return this.kb=!0}return!1},Bb:function(a,b){b?this.g++||td(this,ud,!1):this.B++||vd(this,ud,!1)},S:function(a,b){this.i&&I(this.i,32)&&H(this.i,
|
||||
"attempt to read invalid address "+M(this.i,b),!0);this.w.Ra(b,32,2);return 255},v:function(a,b,c){this.i&&I(this.i,32)&&H(this.i,"attempt to write "+M(this.i,b)+" to invalid addresses "+M(this.i,c),!0);this.w.Ra(c,32,4)},T:function(a,b){return this.lc(a++,b++)|this.lc(a,b)<<8},L:function(a,b,c){this.oc(a++,b&255,c++);this.oc(a,b>>8,c)},ba:function(a){return this.b[a>>2]>>>((a&3)<<3)&255},va:function(a,b){a&1&&this.w.Ra(b,64,2);b=a>>2;a=(a&3)<<3;var c=this.b[b]>>a;return 24>a?c&65535:c&255|(this.b[b+
|
||||
1]&255)<<8},Pa:function(a,b){var c=a>>2;a=(a&3)<<3;this.b[c]=this.b[c]&~(255<<a)|b<<a;this.kb=!0},$a:function(a,b,c){a&1&&this.w.Ra(c,64,4);c=a>>2;a=(a&3)<<3;24>a?this.b[c]=this.b[c]&~(65535<<a)|b<<a:(this.b[c]=this.b[c]&16777215|b<<24,c++,this.b[c]=this.b[c]&-256|b>>8);this.kb=!0},qb:function(a,b){this.i&&null!=this.H&&wd(this.i,this.H+a);return this.I(a,b)},na:function(a,b){this.i&&null!=this.H&&wd(this.i,this.H+a,2);return this.K(a,b)},za:function(a,b,c){this.i&&null!=this.H&&xd(this.i,this.H+
|
||||
a);this.f?this.v(a,b,c):this.G(a,b,c)},Ya:function(a,b,c){this.i&&null!=this.H&&xd(this.i,this.H+a,2);this.f?this.v(a,b,c):this.N(a,b,c)},Y:function(a){return this.D[a]},rb:function(a,b){a=this.D[a];this.i&&I(this.i,32)&&H(this.i,"Memory.readByte("+M(this.i,b)+"): "+M(this.i,a),!0);return a},ca:function(a,b){a&1&&this.w.Ra(b,64,2);return this.F.getUint16(a,!0)},oa:function(a,b){a&1&&this.w.Ra(b,64,2);a=this.P[a>>1];this.i&&I(this.i,32)&&H(this.i,"Memory.readWord("+M(this.i,b)+"): "+M(this.i,a),!0);
|
||||
return a},wa:function(a,b){this.D[a]=b;this.kb=!0},Ga:function(a,b,c){this.D[a]=b;this.kb=!0;this.i&&I(this.i,32)&&H(this.i,"Memory.writeByte("+M(this.i,c)+","+M(this.i,b)+")",!0)},Ta:function(a,b,c){a&1&&this.w.Ra(c,64,4);this.F.setUint16(a,b,!0);this.kb=!0},Za:function(a,b,c){a&1&&this.w.Ra(c,64,4);this.P[a>>1]=b;this.kb=!0;this.i&&I(this.i,32)&&H(this.i,"Memory.writeWord("+M(this.i,c)+","+M(this.i,b)+")",!0)}};
|
||||
function zc(a,b,c){a.i=b;a.B=a.g=0;c&&((a.B=c.B)&&vd(a,ud,!1),(a.g=c.g)&&td(a,ud,!1))}function td(a,b,c){c&&a.g||(a.oc=!a.f&&b[1]||a.v,a.gc=!a.f&&b[3]||a.L);if(c||void 0===c)a.G=b[1]||a.v,a.N=b[3]||a.L}function vd(a,b,c){c&&a.B||(a.lc=b[0]||a.S,a.Ca=b[2]||a.T);if(c||void 0===c)a.I=b[0]||a.S,a.K=b[2]||a.T}function pd(a,b){b||(b=yd);vd(a,b,void 0);td(a,b,void 0)}var yd=[],sd=[L.prototype.ba,L.prototype.Pa,L.prototype.va,L.prototype.$a],ud=[L.prototype.qb,L.prototype.za,L.prototype.na,L.prototype.Ya];
|
||||
if(Db)var rd=[L.prototype.Y,L.prototype.wa,L.prototype.ca,L.prototype.Ta],qd=[L.prototype.rb,L.prototype.Ga,L.prototype.oa,L.prototype.Za];function zd(a,b){z.call(this,"CPU",a,zd,1);b=a.cycles||b;var c=a.multiplier||1;this.pc=0;this.Ab=b;this.ub=c;this.sc=Math.round(this.Ab/1E4)/100;this.Gb=this.sc*this.ub;this.C.U=!1;this.C.nc=!1;this.C.ib=a.autoStart;this.C.Sb=!1;this.cc=this.Ga=0;this.dc=a.csStart;this.Wb=a.csInterval;this.Xb=a.csStop;this.N=[];this.Fc=this.Xe.bind(this);K(this)}E(zd);
|
||||
var Ad=["power","reset"];h=zd.prototype;h.Ia=function(a,b,c,d){this.B=a;this.w=b;this.i=d;this.v=a.v;for(a=0;a<Ad.length;a++)(b=this.D[Ad[a]])&&this.B.xa(null,Ad[a],b);this.Ic();K(this)};h.Ic=function(){};h.Hc=function(){};h.reset=function(){};h.save=function(){return null};h.restore=function(){return!1};
|
||||
h.La=function(a,b){var c=Bd(this.B,"autoStart");null!=c?this.C.ib="true"==c?!0:"false"==c?!1:!!c:null==this.C.ib&&(this.C.ib=!this.i&&void 0===this.D.run);if(!b){this.Hc();if(a&&this.restore){Cd(this);if(!this.restore(a))return!1;Dd(this)}else this.reset();this.i?(a=this.i,b=this.C.ib,a.Za=!0,a.j("Type ? for help with PDPjs Debugger commands"),Ed(a),b||a.wb(),a.Ta&&(b=a.Ta,a.Ta=null,Fd(a,b))):this.j("No debugger detected");this.C.ib||this.j("CPU will not be auto-started, click Run to start")}return!0};
|
||||
h.Ka=function(a){return a?this.save():!0};h.ib=function(){return this.C.U?!0:this.C.ib?(this.pb(),!0):!1};h.Yc=function(){return 0};function Dd(a){void 0===a.dc&&(a.dc=0);void 0===a.Wb&&(a.Wb=-1);void 0===a.Xb&&(a.Xb=-1);a.C.Sb=0<=a.dc&&0<a.Wb;a.C.Sb&&(a.cc=0,a.Ga=a.dc-a.oa)}function Yb(a,b){if(a.C.Sb){var c=!1;a.cc=a.cc+a.Yc()|0;a.Ga-=b;0>=a.Ga&&(a.Ga+=a.Wb,c=!0);0<=a.Xb&&a.Xb<=Gd(a)&&(a.Wb=a.Xb=-1,Dd(a),a.ea(),c=!0);c&&a.j(Gd(a)+" cycles: checksum="+q(a.cc))}}
|
||||
h.xa=function(a,b,c){var d=this;switch(b){case "power":case "reset":return this.D[b]=c,!0;case "run":return this.D[b]=c,c.onclick=function(){var a;if(a=d.B)if(a=d.B,a.C.ma)a=!0;else{var b=null,c,k=pb(a.id);for(c=0;c<k.length&&(b=k[c],b===a||b.C.ready);c++);if(c==k.length)for(c=0;c<k.length&&(b=k[c],b===a||b.C.ma);c++);c==k.length&&(b=a);x("The "+b.type+" component ("+b.id+") is not "+(b.C.ready?"powered yet":"ready yet"+(b.ic?" (waiting for notification)":""))+".");a=!1}a&&(d.C.U?d.ea():d.pb())},
|
||||
!0;case "speed":return this.D[b]=c,!0;case "setSpeed":return this.D[b]=c,c.onclick=function(){Hd(d,d.ub<<1,!0)},c.textContent=this.Gb.toFixed(2)+"Mhz",!0}return!1};h.ya=function(a){this.B&&this.B.ya(a)};function Xb(a,b,c){a.oa+=b;c&&(a.na=a.b=a.L=0)}function Id(a,b){var c=1;b&&1<a.ub&&a.za&&(c=a.za/a.sc);a.Qc=Math.round(1E3/30);a.Nb=Math.floor(a.Ab/30*c);b||(a.Pa=a.Nb);a.tc=0}function Gd(a){return a.oa+a.Y+a.na-a.b}function Cd(a){a.za=0;a.Rc=0;a.oa=a.Y=a.na=a.b=a.L=0;Dd(a);Hd(a,1)}
|
||||
function Hd(a,b,c){var d=!1;if(void 0!==b){.8>a.za/a.Gb?b=1:d=!0;a.ub=b;b=a.sc*a.ub;if(a.Gb!=b){a.Gb=b;b=a.Gb.toFixed(2)+"Mhz";var e=a.D.setSpeed;e&&(e.textContent=b);a.j("target speed: "+b)}c&&a.B&&a.B.wb()}Xb(a,a.Y);a.Y=0;a.T=Ca();a.ca=0;Id(a);return d}function Mc(a,b){var c=a.N.length;a.N.push([-1,b]);return c}function Oc(a,b,c,d){0<=b&&b<a.N.length&&(d||0>a.N[b][0])&&(c=a.Ab*a.ub/1E3*c|0,a.C.U&&(c+=Jd(a)),a.N[b][0]=c)}
|
||||
function Kd(a,b){for(var c=a.N.length-1;0<=c;c--){var d=a.N[c];0>d[0]||b>d[0]&&(b=d[0])}return b}function Wb(a,b){for(var c=a.N.length-1;0<=c;c--){var d=a.N[c];0>d[0]||(d[0]-=b,0>=d[0]&&(d[0]=-1,d[1]()))}}function Jd(a,b){var c=a.na-=a.b;a.b=a.L=0;b&&(a.na=0);return c}
|
||||
h.Xe=function(){if(this.C.U){this.tc>=this.Ab&&Id(this,!0);this.Za=0;this.zb=Ca();if(this.ca){var a=this.zb-this.ca;a>this.Qc&&(this.T+=a,this.T>this.zb&&(this.T=this.zb))}try{do{var b=Kd(this,this.C.Sb?1:this.Nb);try{this.xb(b)}catch(e){if("number"!=typeof e)throw e;}b=Jd(this,!0);this.Za+=b;this.Y+=b;Yb(this,b);Wb(this,b);this.Pa-=b;if(0>=this.Pa){this.Pa+=this.Nb;15<=++this.Rc&&(this.ya(),this.Rc=0);break}}while(this.C.U)}catch(e){this.ea();this.B&&this.B.stop(Ca(),Gd(this));Cb(this,e.stack||e.message);
|
||||
return}if(this.C.U){a=setTimeout;b=this.Fc;this.ca=Ca();var c=this.Qc;this.Za&&(c=Math.round(c*this.Za/this.Nb));var c=c-(this.ca-this.zb),d=this.ca-this.T;d&&(this.za=Math.round(this.Y/(10*d))/100,864E5<=d&&(this.oa=0,Hd(this)));if(0>c||this.za<this.Gb)-1E3>c&&(this.T-=c),c=0;this.tc+=this.Za;this.ca+=c;a(b,c)}}};
|
||||
h.pb=function(a){if(Bb(this))return!1;if(this.C.U)return this.j(this.toString()+" busy"),!1;Hd(this);this.C.U=!0;this.C.nc=!0;var b=this.D.run;b&&(b.textContent="Halt");this.B&&(a&&this.B.wb(!0),this.B.start(this.T,Gd(this)));this.i||this.status("Started");setTimeout(this.Fc,0);return!0};h.xb=function(){return 0};
|
||||
h.ea=function(a){var b=!1;if(this.C.U){Jd(this);Xb(this,this.Y);this.Y=0;this.C.U=!1;if(b=this.D.run)b.textContent="Run";this.B&&this.B.stop(Ca(),Gd(this));b=!0;this.i||this.status("Stopped")}this.C.complete=a;return b};
|
||||
function Ld(a){this.gb=+a.model||1170;this.Mc=a.addrReset||0;zd.call(this,a,6666667);this.Ob=0;this.Pc=255;1120>=this.gb?(this.decode=Md.bind(this),this.wa=this.Dd,this.Ob=8,this.Pc=-1,this.Vc=255,this.Tc=0):(this.decode=Nd.bind(this),this.wa=this.Ed,this.Vc=~(1792|(1145>this.gb?2048:0))&65535,this.Tc=1145<=this.gb?2048:0);Od(this);this.K=0;this.I=null;this.qc=[];this.C.complete=!1;this.$a=this.sb=0}E(Ld,zd);h=Ld.prototype;
|
||||
h.Ic=function(){this.kc=this.w.cb.bind(this.w);this.Eb=this.w.ia.bind(this.w);this.Lb=this.w.ob.bind(this.w);this.Mb=this.w.Sa.bind(this.w)};h.Hc=function(){for(var a=192,b=0;b<this.qc.length;b++){var c=this.qc[b];0>c.fc&&(c.fc=a,a+=4)}};h.reset=function(){this.status("Model "+this.gb);this.C.U&&this.ea();Od(this);Cd(this);this.C.error=!1;this.parent.reset.call(this)};
|
||||
function Od(a){a.V=65536;a.W=32768;a.Z=65535;a.X=32768;a.O=15;a.u=[0,0,0,0,0,0,0,a.Mc,-1,-2,-3,-4,-5,-6,-7,-8];a.hb=[0,0,0,0,0,0];a.Na=[0,0,0,0];a.A=0;a.Oc=[4,2,0,1];a.R=[[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[65535,65535,65535,65535,65535,65535,65535,65535,65535,65535,65535,65535,65535,65535,65535,65535],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0]];a.fa=[[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,
|
||||
0,0,0,0,0,0]];a.Jb=[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0];a.Bc=[0,0,0,0,0,0,0,0];a.Ac=0;a.J=0;a.F=a.G=0;a.g=a.f=a.rc=0;a.va=-1;Vb(a)}function Vb(a){a.Ea=0;a.Pb=0;a.Qb=0;a.Ma=0;a.qa=0;a.Ib=0;a.mb=255;a.ba=0;a.Ta=0;a.Ya=0;a.S=262143;a.Rb=0;a.pa=0;a.I=null;a.w&&(Pd(a),a.Cd=Ic(a.w))}
|
||||
function Pd(a){a.cb=a.kc;a.ia=a.Eb;a.ob=a.Lb;a.Sa=a.Mb;a.$a&&(a.cb=a.Jd,a.ia=a.Md);a.sb&&(a.ob=a.Ze,a.Sa=a.$e);a.ba?(a.P=65536,a.Ha=a.Ma&16?4186112:253952,a.aa=a.Ld,a.Ca=a.$a?a.Te:a.ed,a.gc=a.sb?a.Wf:a.kd,Dc(a.w,a.Ma&16?22:18)):(a.P=0,a.Ha=57344,a.aa=a.Kd,a.Ca=a.$a?a.Se:a.dd,a.gc=a.sb?a.Vf:a.jd,Dc(a.w,16))}function ad(a){var b=a.Ea;b&57344||(b=b&-3199|a.Ta<<5|a.Ya<<1);return b}
|
||||
function bd(a,b){b&=-3073;if(a.Ea!=b){b&57344&&!(a.Ea&57344)&&(a.Pb=a.pa>>16&65535,a.Qb=a.pa&65535);a.Ea=b;a.Ta=(b&96)>>5;a.Ya=(b&30)>>1;var c=0;b&257&&(c=4,b&1&&(c|=2));a.ba!=c&&(a.ba=c,Pd(a))}}function cd(a){a.Ea&57344||(a.Pb=a.pa>>16&65535);a=a.Pb;a&65280&&(a=(a<<8|a>>8)&65535);return a}function dd(a){a.Ea&57344||(a.Qb=a.pa&65535);return a.Qb}function ed(a,b){1170>a.gb&&(b&=-49);a.Ma!=b&&(a.Ma=b,a.S=b&16?4194303:262143,Pd(a))}
|
||||
function Qd(a,b,c){a.Mc=b;a.w.reset();Vb(a);Rd(a,b);hd(a,0);if(c){for(b=2;5>=b;b++)a.u[b]=0;a.C.U||a.pb()}else a.i?a.ea()||Ed(a.i):!1===c&&a.ea();!a.C.U&&a.v&&a.v.stop()}h.Yc=function(){return 0};h.save=function(){var a=new T(this);a.set(0,[this.u,this.hb,this.Na,this.Jb,this.Bc,this.qa,this.Ac,this.Ib,this.mb,gd(this),this.va,this.A,this.J,this.Ea,this.Pb,this.Qb,this.Ma,this.Ta,this.Ya,this.R,this.fa,this.ba,this.S,this.Rb,this.pa]);a.set(1,[this.oa,this.ub]);a.set(2,Hc(this.w));return a.data()};
|
||||
h.restore=function(a){var b=a[1];this.oa=b[1];Hd(this,b[3]);a:{b=this.w;a=a[2];var c;for(c=0;c<a.length-1;c+=2){var d=a[c],e=a[c+1];if(e&&e.length<b.L){for(var f=0,g=Array(b.L),k=0;k<e.length-1;)for(var l=e[k++],m=e[k++];l--;)g[f++]=m;e=g}f=b.ga[d];if(!f||!f.restore(e)){x("Unable to restore memory block "+d);b=!1;break a}}b=!0}return b};function Sd(a){return a.V&65536?1:0}function Td(a){return a.W&32768?2:0}function Ud(a){return a.Z&65535?0:4}function Vd(a){return a.X&32768?8:0}
|
||||
function Wd(a,b){var c=a.u[7];a.u[7]=c+b&65535;return c}function Rd(a,b){a.u[7]=b&65535}function Pc(a,b,c,d){c={fc:b,vb:c,message:d||0,next:null};c.name=Fb[b];a.qc.push(c);return c}function Xd(a,b){var c=a.I;if(c==b)a.I=b.next;else for(;c;){var d=c.next;if(d==b){c.next=d.next;break}c=d}a.I&&(a.J|=1)}
|
||||
function Nc(a,b){if(b!=a.I){var c=a.I;if(!c||c.vb<=b.vb)b.next=c,a.I=b;else{do{var d=c.next;if(!d||d.vb<=b.vb){b.next=d;c.next=b;break}c=d}while(c)}}a.J|=1;b.message&&I(a,b.message|8)&&H(a,"setIRQ(vector="+p(b.fc)+",priority="+b.vb+")",!0,!0)}function Sc(a,b){Xd(a,b);b.message&&I(a,b.message|8)&&H(a,"clearIRQ(vector="+p(b.fc)+",priority="+b.vb+")",!0,!0)}function Yd(a){return a.J&64?(a.ua(168,64,-6),!0):a.J&32?(a.ua(4,32,-5),!0):a.J&16?(a.ua(12,16,-7),!0):!1}
|
||||
function gd(a){return a.O=a.O&63728|Vd(a)|Ud(a)|Td(a)|Sd(a)}function hd(a,b){b&=a.Vc;a.X=b<<12;a.Z=~b&4;a.W=b<<14;a.V=b<<16;if((b^a.O)&a.Tc)for(var c=a.hb.length;0<=--c;){var d=a.u[c];a.u[c]=a.hb[c];a.hb[c]=d}a.A=b>>14&3;c=a.O>>14&3;a.A!=c&&(a.Na[c]=a.u[6],a.u[6]=a.Na[a.A]);a.O=b;a.J&=-3;a.J|=a.I?2:1}function fd(a,b){if(b&=65024){var c=b>>9;do b+=34;while(c>>=1);a.J|=1}a.Ib=b}h.Fa=function(a){this.X=this.Z=a;this.W=0};h.yb=function(a,b){this.X=this.Z=this.V=a;this.W=b||0};
|
||||
function Zd(a,b){a.X=a.Z=a.V=b;a.W=a.X^a.V>>1}function $d(a,b,c,d){a.X=a.Z=a.V=b;a.W=(c^d)&(d^b)}
|
||||
h.ua=function(a,b,c){if(!this.K){0>this.va?this.va=gd(this):this.A||(c=-4);-4==c&&(this.J&256&&(c=-1),this.J|=256,this.qa|=4,this.u[6]=a=4);if(-1!=c){this.pa=a|4143316992;this.A=0;var d=this.Ca(a|this.P),e=this.Ca(a+2&65535|this.P);hd(this,e&-12289|this.va>>2&12288);te(this,this.va);te(this,this.u[7]);Rd(this,d)}this.b-=5;this.J&=~(b|19);this.J|=129;this.va=-1;this.Id=a;this.Hd=c;-1==c&&this.ea();if(-4<=c)throw a;}};
|
||||
function ue(a){var b=ve(a),c=ve(a);a.O&49152&&(c=c&-225|a.O&63712);Rd(a,b);hd(a,c);a.J&=-17}h.fb=function(a){var b=a>>13&31;31>b&&(a=this.Ma&32?this.Jb[b]+(a&8190)&4194302:a&-3932161);return a};h.jc=function(a){var b=[];if(this.ba){var c=this.A<<1,d=a>>13;7<d&&(c|=1);this.Ma&this.Oc[this.A]||(d&=7);var e=a&8191,f=this.fa[this.A][d]<<6;a=f+e&this.S;3932160<=a&&(a=this.fb(a));b.push(a);b.push(e);b.push(c);b.push(d&7);b.push(f);b.push(this.S)}else a&=65535,57344<=a&&(a|=this.Ha),b.push(a);return b};
|
||||
function ac(a,b,c){var d,e,f;if(!(c&a.ba))return f=b&65535,57344<=f&&(f|=a.Ha),f;d=b>>13;a.Ma&a.Oc[a.A]||(d&=7);e=a.R[a.A][d];f=(a.fa[a.A][d]<<6)+(b&8191)&a.S;3932160<=f&&(f=a.fb(f));if(a.K)return f;f>=a.Cd&&f<a.Ha?(a.qa|=32,a.ua(4,0,f)):f&1&&!(c&1)&&(a.qa|=64,a.ua(4,0,f));var g=0;switch(e&7){case 1:g=4096;case 2:e|=128;c&4&&(g=8192);break;case 4:g=4096;case 5:c&4&&(g=4096);case 6:e|=c&4?192:128;break;default:g=32768}32512!=(e&32520)&&(e&8?e&32512&&(b&8128)<(e>>2&8128)&&(g|=16384):(b&8128)>(e>>2&
|
||||
8128)&&(g|=16384));a.R[a.A][d]=e;if(f!=(4194170&a.S)||a.A)a.Ta=a.A,a.Ya=d;g&&(g&57344&&(0<=a.va&&(g|=128),a.Ea&57344||(g|=a.Ea&4096|a.Ta<<5|a.Ya<<1,bd(a,a.Ea&-61695|g&61694)),a.ua(168,64,-2)),a.Ea&61440||!(f<(4191360&a.S)||f>(4194239&a.S))||(a.Ea|=4096,a.Ea&512&&(a.J|=64)));return f}function ve(a){var b=a.Ca(a.u[6]|a.P);a.u[6]=a.u[6]+2&65535;return b}function te(a,b){var c=a.u[6]-2&65535;a.u[6]=c;a.pa=a.pa&65535|(a.pa&-65536)<<8|16121856;a.J&256||a.wa(4,-2,c);a.gc(c,b)}
|
||||
function we(a,b,c,d){var e,f,g=d&8?0:a.P;switch(b){case 0:return a.ua(4,0,-3),0;case 1:return 6==c&&a.wa(d,0,a.u[6]),a.b-=3,7==c?a.u[c]:a.u[c]|g;case 2:f=2;e=a.u[c];6==c&&a.wa(d,f,e);7!=c&&(e|=g,6>c&&d&1&&(f=1));a.b-=3;break;case 3:f=2;e=a.u[c];7!=c&&(e|=g);e=a.Ca(e);e|=g;a.b-=7;break;case 4:f=-2;6>c&&d&1&&(f=-1);e=a.u[c]+f&65535;6==c&&a.wa(d,f,e);7!=c&&(e|=g);a.b-=4;break;case 5:f=-2;e=a.u[c]-2&65535;7!=c&&(e|=g);e=a.Ca(e)|g;a.b-=8;break;case 6:return e=a.Ca(Wd(a,2)),e=e+a.u[c]&65535,6==c&&a.wa(d,
|
||||
0,e),a.b-=6,e|g;case 7:return e=a.Ca(Wd(a,2)),e=e+a.u[c]&65535,e=a.Ca(e|a.P),a.b-=10,e|g}a.u[c]=a.u[c]+f&65535;a.pa=a.pa&65535|(a.pa&-65536)<<8|(f<<3&248|c)<<16;return e}h.Dd=function(a,b,c){!this.A&&0>=b&&c<=this.mb&&(this.J|=32)};h.Ed=function(a,b,c){this.A||(65534<=c&&(c|=-65536),a&4&&c<=this.mb&&(c<=this.mb-32?this.ua(4,0,-4):(this.qa|=8,this.J|=32)))};h.Jd=function(a){this.i&&wd(this.i,a,1);return this.kc(a)};h.Md=function(a){this.i&&wd(this.i,a,2);return this.Eb(a)};
|
||||
h.Ze=function(a,b){this.i&&xd(this.i,a,1);this.Lb(a,b)};h.$e=function(a,b){this.i&&xd(this.i,a,2);this.Mb(a,b)};function bc(a,b){a.K++;b=a.w.ia(ac(a,b,2));a.K--;return b}h.uc=function(a,b){(b?this.sb++:this.$a++)||Pd(this)};h.Kb=function(a,b){(b?--this.sb:--this.$a)||Pd(this)};h.Kd=function(a,b,c){return we(this,a,b,c)};h.Ld=function(a,b,c){return ac(this,we(this,a,b,c),c)};h.dd=function(a){return this.w.ia(this.Rb=a)};h.Se=function(a){this.i&&wd(this.i,a,2);return this.dd(a)};
|
||||
h.ed=function(a){return this.w.ia(this.Rb=ac(this,a,2))};h.Te=function(a){this.i&&wd(this.i,a,2);return this.ed(a)};h.jd=function(a,b){this.w.Sa(this.Rb=a,b)};h.Vf=function(a,b){this.i&&xd(this.i,a,2);this.jd(a,b)};h.kd=function(a,b){this.w.Sa(this.Rb=ac(this,a,4),b)};h.Wf=function(a,b){this.i&&xd(this.i,a,2);this.kd(a,b)};
|
||||
function xe(a,b,c){var d=a.f=b&7;(b=a.g=(b&56)>>3)?(d=we(a,b,d,2),c&65536||61440!==(a.O&61440)&&(d&=65535),a.A=a.O>>12&3,c=a.Ca(d|c&a.P),a.A=a.O>>14&3):c=6!=d||(a.O>>2&12288)===(a.O&12288)?a.u[d]:a.Na[a.O>>12&3];return c}function ye(a,b,c,d){a.pa=a.pa&65535|1441792;var e=a.f=b&7;(b=a.g=(b&56)>>3)?(e=we(a,b,e,4),c&65536||(e&=65535),a.A=a.O>>12&3,e=ac(a,e|c&65536,4),a.A=a.O>>14&3,a.Sa(e,d)):6!=e||(a.O>>2&12288)===(a.O&12288)?a.u[e]=d:a.Na[a.O>>12&3]=d}
|
||||
function ze(a,b){var c;b>>=6;var d=a.G=b&7;(b=a.F=(b&56)>>3)?c=a.cb(a.aa(b,d,3)):c=a.u[d+a.Ob]&a.Pc;return c}function Ae(a,b){b>>=6;var c=a.G=b&7;return(b=a.F=(b&56)>>3)?a.ia(a.aa(b,c,2)):a.u[c+a.Ob]}function Be(a,b){var c=a.f=b&7;b=a.g=(b&56)>>3;return we(a,b,c,8)}function Ce(a,b){var c,d=a.f=b&7;(b=a.g=(b&56)>>3)?c=a.cb(a.aa(b,d,3)):c=a.u[d]&255;return c}function De(a,b){var c=a.f=b&7;return(b=a.g=(b&56)>>3)?a.ia(a.aa(b,c,2)):a.u[c]}
|
||||
function Ee(a,b,c,d){var e=a.f=b&7;(b=a.g=(b&56)>>3)?(e=a.rc=a.aa(b,e,7),c=0>c?a.u[-c-1]&255:c,a.ob(e,d.call(a,c,a.cb(e))),e&1&&a.b--):(b=a.u[e],c=0>c?a.u[-c-1]&255:c,a.u[e]=b&65280|d.call(a,c,b&255))}function U(a,b,c,d){var e=a.f=b&7;(b=a.g=(b&56)>>3)?(e=a.aa(b,e,6),a.Sa(e,d.call(a,0>c?a.u[-c-1]:c,a.ia(e)))):a.u[e]=d.call(a,0>c?a.u[-c-1]:c,a.u[e])}
|
||||
function Fe(a,b,c,d,e){var f=a.f=b&7;(b=a.g=(b&56)>>3)?(d=a.aa(b,f,5),e.call(a,(c=0>c?a.u[-c-1]&255:c)<<8),a.ob(d,c),d&1&&a.b--):(c?(c=0>c?a.u[-c-1]&255:c,a.u[f]=a.u[f]&~d|c<<24>>24&d):a.u[f]&=~d,e.call(a,c<<8))}function Ge(a,b,c,d){var e=a.f=b&7;(b=a.g=(b&56)>>3)?(e=a.aa(b,e,4),d.call(a,c=0>c?a.u[-c-1]:c),a.Sa(e,c)):(a.u[e]=c=0>c?a.u[-c-1]:c,d.call(a,c))}function V(a,b,c){c&&(Rd(a,a.u[7]+(b<<24>>23)),a.b-=2);a.b-=3}
|
||||
h.xb=function(a){this.C.complete=!0;var b=this.i?He(this.i)?1:this.C.nc?-1:0:0,c=a?this.C.nc?0:1:-1;this.C.nc=!1;this.na=this.b=a;this.J=this.J&-5|(b?4:0);do{if(this.J){if(this.J&4){if(Ie(this.i,this.u[7],c)){this.ea();break}++b||(this.J&=-5);c||c++}if(a=this.J&11)if(a=!1,this.J&2){var d=160,e=(this.Ib&224)>>5,f=this.I&&this.I.vb>e?this.I:null;f&&(d=f.fc,e=f.vb);e>(this.O&224)>>5?(this.J&8&&(Wd(this,2),this.J&=-9),this.ua(d,0,-10),e=!0):e=!1;e&&(f&&Xd(this,f),a=!0);this.I||this.Ib||(this.J&=-3)}else this.J&
|
||||
1&&this.J++;if(a){if(this.J&4&&Ie(this.i,this.u[7],c)){this.ea();break}if(0>c)break}if(this.J&112&&Yd(this)){if(this.J&4&&Ie(this.i,this.u[7],c)){this.ea();break}if(0>c)break}}this.J=this.J&15|this.O&16;a=this.pa=this.u[7];f=this.Ca(a);this.u[7]=a+2&65535;this.decode(f)}while(0<this.b);return this.C.complete?this.na-this.b:void 0===this.C.complete?0:-1};db(function(){for(var a=G(document,"pdp11","cpu"),b=0;b<a.length;b++){var c=a[b],d=F(c),d=new Ld(d);sb(d,c)}});
|
||||
function Je(a,b){var c=b+a;this.X=this.Z=this.V=c;this.W=(a^c)&(b^c);return c&65535}function Ke(a,b){var c=b+a,d=c<<8;this.X=this.Z=this.V=d;this.W=(a<<8^d)&(b<<8^d);return c&255}function Le(a,b){a=b<<1;Zd(this,a);return a&65535}function Me(a,b){a=b<<1;Zd(this,a<<8);return a&255}function Ne(a,b){a=b&32768|b>>1|b<<16;Zd(this,a);return a&65535}function Oe(a,b){a=b&128|b>>1|b<<8;Zd(this,a<<8);return a&255}function Pe(a,b){a=b&~a;this.Fa(a);return a}function Qe(a,b){a=b&~a;this.Fa(a<<8);return a}
|
||||
function Re(a,b){a|=b;this.Fa(a);return a}function Se(a,b){a|=b;this.Fa(a<<8);return a}function Te(a,b){a=~b|65536;this.yb(a);return a&65535}function Ue(a,b){a=~b|256;this.yb(a<<8);return a&255}function Ve(a,b){this.X=this.Z=a=b-a;this.W=b&(b^a);return a&65535}function We(a,b){a=b-a;var c=a<<8;b<<=8;this.X=this.Z=c;this.W=b&(b^c);return a&255}function Xe(a,b){this.X=this.Z=a=b+a;this.W=a&(b^a);return a&65535}function Ye(a,b){a=b+a;var c=a<<8;this.X=this.Z=c;this.W=c&(b<<8^c);return a&255}
|
||||
function Ze(a,b){a=-b;this.yb(a,a&b&32768);return a&65535}function $e(a,b){a=-b;this.yb(a<<8,(a&b&128)<<8);return a&255}function af(a,b){a=b<<1|this.V>>16&1;Zd(this,a);return a&65535}function bf(a,b){a=b<<1|this.V>>16&1;Zd(this,a<<8);return a&255}function cf(a,b){a=(this.V&65536|b)>>1|b<<16;Zd(this,a);return a&65535}function df(a,b){a=((this.V&65536)>>8|b)>>1|b<<8;Zd(this,a<<8);return a&255}function ef(a,b){var c=b-a;$d(this,c,a,b);return c&65535}
|
||||
function ff(a,b){var c=b-a;$d(this,c<<8,a<<8,b<<8);return c&255}function gf(a,b){this.X=this.Z=b&65280;this.W=this.V=0;return(b<<8|b>>8)&65535}function hf(a,b){a^=b;this.Fa(a);return a&65535}function jf(a){U(this,a,Ae(this,a),Je);this.b-=this.g?9+(this.G&&6<=this.f?1:0):(this.F?5:3)+(7==this.f?2:0)}
|
||||
function kf(a){var b=De(this,a);a=a>>6&7;var c=this.u[a];c&32768&&(c|=4294901760);this.V=this.W=0;b&=63;if(b&32)b=64-b,16<b&&(b=16),this.V=c<<17-b,c>>=b;else if(b)if(16<b)this.W=c,c=0;else{this.V=c<<=b;var d=c>>15&65535;d&&65535!==d&&(this.W=32768)}this.u[a]=c&65535;this.X=this.Z=c;this.b-=(this.g?6:7)+b}
|
||||
function lf(a){var b=De(this,a);a=a>>6&7;var c=this.u[a]<<16|this.u[a|1];this.V=this.W=0;b&=63;if(b&32){b=64-b;32<b&&(b=32);var d=c>>b-1;this.V=d<<16;d>>=1;c&2147483648&&(d|=4294967295<<32-b)}else b?(d=c<<b-1,this.V=d>>15,d<<=1,32<b&&(b=32),(c>>=32-b)&&4294967295!==(c|4294967295<<b&4294967295)&&(this.W=32768)):d=c;this.u[a]=d>>16&65535;this.u[a|1]=d&65535;this.X=d>>16;this.Z=d>>16|d;this.b-=(this.g?6:7)+b}function mf(a){V(this,a,!Sd(this))}function nf(a){V(this,a,Sd(this))}
|
||||
function of(a){U(this,a,Ae(this,a),Pe);this.b-=this.g?9+(this.G&&6<=this.f?1:0):(this.F?5:3)+(7==this.f?2:0)}function pf(a){Ee(this,a,ze(this,a),Qe);this.b-=this.g?9+(this.G&&6<=this.f?1:0):(this.F?5:3)+(7==this.f?2:0)}function qf(a){U(this,a,Ae(this,a),Re);this.b-=this.g?9+(this.G&&6<=this.f?1:0):(this.F?5:3)+(7==this.f?2:0)}function rf(a){Ee(this,a,ze(this,a),Se);this.b-=this.g?9+(this.G&&6<=this.f?1:0):(this.F?5:3)+(7==this.f?2:0)}
|
||||
function sf(a){var b=Ae(this,a);a=De(this,a);this.Fa((0>b?this.u[-b-1]:b)&a);this.b-=this.g?4+(this.G&&6<=this.f?1:0):(this.F?4:3)+(7==this.f?2:0)}function tf(a){var b=ze(this,a);a=Ce(this,a);this.Fa(((0>b?this.u[-b-1]&255:b)&a)<<8);this.b-=this.g?4+(this.G&&6<=this.f?1:0):(this.F?4:3)+(7==this.f?2:0)}function uf(a){V(this,a,Ud(this))}function vf(a){V(this,a,!Vd(this)==!Td(this))}function wf(a){V(this,a,!Ud(this)&&!Vd(this)==!Td(this))}function xf(a){V(this,a,!Sd(this)&&!Ud(this))}
|
||||
function yf(a){V(this,a,Ud(this)||!Vd(this)!=!Td(this))}function zf(a){V(this,a,Sd(this)||Ud(this))}function Af(a){V(this,a,!Vd(this)!=!Td(this))}function Bf(a){V(this,a,Vd(this))}function Cf(a){V(this,a,!Ud(this))}function Df(a){V(this,a,!Vd(this))}function Ef(){this.ua(12,0,-9)}function Ff(a){V(this,a,!0)}function Gf(a){V(this,a,!Td(this))}function Hf(a){V(this,a,Td(this))}function If(a){a&1&&(this.V=0);a&2&&(this.W=0);a&4&&(this.Z=1);a&8&&(this.X=0);this.b-=5}
|
||||
function Jf(a){var b=Ae(this,a);a=De(this,a);var c=(b=0>b?this.u[-b-1]:b)-a;$d(this,c,a,b);this.b-=this.g?4+(this.G&&6<=this.f?1:0):(this.F?4:3)+(7==this.f?2:0)}function Kf(a){var b=ze(this,a);a=Ce(this,a);var c=(b=(0>b?this.u[-b-1]&255:b)<<8)-(a<<=8);$d(this,c,a,b);this.b-=this.g?4+(this.G&&6<=this.f?1:0):(this.F?4:3)+(7==this.f?2:0)}
|
||||
function Lf(a){var b=De(this,a);if(b){a=a>>6&7;var c=this.u[a]<<16|this.u[a|1];this.V=this.W=0;b&32768&&(b|=-65536);var d=~~(c/b);-32768<=d&&32767>=d?(this.u[a]=d&65535,this.u[a|1]=c-d*b&65535,this.Z=d>>16|d,this.X=d>>16):(this.W=32768,this.Z=d>>15|d,this.X=c>>16,-1===b&&65534===this.u[a]&&(this.u[a]=this.u[a|1]=1));this.b-=53}else this.Z=this.X=0,this.W=32768,this.V=65536,this.b-=7}function Mf(){this.ua(24,0,-9);this.b-=20}
|
||||
function Nf(){this.O&49152?(this.qa|=128,this.ua(4,0,-8)):(this.v&&1120==this.gb&&this.v.setData(this.u[0],!0),this.i?Of(this.i):this.ea());this.b-=7}function Pf(){this.ua(16,0,-9);this.b-=20}var Qf=[0,7,7,10,7,11,9,13];function Rf(a){this.L=this.b;Rd(this,Be(this,a));this.b=this.L-Qf[this.g]}var Sf=[0,14,14,17,14,18,16,20];function Tf(a){this.L=this.b;var b=Be(this,a);a=a>>6&7;te(this,this.u[a]);this.u[a]=this.u[7];Rd(this,b);this.b=this.L-Sf[this.g]}
|
||||
var Uf=[3,9,9,13,10,14,12,16,4,9,9,13,10,14,13,17];function Vf(a){var b=Ae(this,a);this.L=this.b;Ge(this,a,b,this.Fa);this.b=this.L-Uf[(this.F?8:0)+this.g]+(7!=this.f||this.g?0:2)}function Wf(a){var b=ze(this,a);Fe(this,a,b,65535,this.Fa);this.b-=this.g?9+(this.G&&6<=this.f?1:0):(this.F?5:3)+(7==this.f?2:0)}var Xf=[7,13,13,17,14,18,17,21];
|
||||
function Yf(a){var b=De(this,a);a=a>>6&7;b&32768&&(b|=-65536);var c=this.u[a];c&32768&&(c|=-65536);b=~~(b*c);this.u[a]=b>>16&65535;this.u[a|1]=b&65535;this.X=b>>16;this.Z=this.X|b;this.W=0;this.V=-32768>b||32767<b?65536:0;this.b-=23}function Zf(){this.b-=5}function $f(){this.O&49152||(this.w.reset(),Vb(this),this.v&&this.v.setData(this.u[0],!0));this.b-=667}function ag(a){if(a&8)W.call(this,a);else{var b=ve(this);a&=7;7==a?Rd(this,b):(Rd(this,this.u[a]),this.u[a]=b);this.b-=9}}
|
||||
function bg(){ue(this);this.b-=13}function cg(a){a&1&&(this.V=65536);a&2&&(this.W=32768);a&4&&(this.Z=0);a&8&&(this.X=32768);this.b-=5}function dg(a){var b=(a&448)>>6;if(this.u[b]=this.u[b]-1&65535)Rd(this,this.u[7]-((a&63)<<1)),this.b+=1;this.b-=6}function eg(a){U(this,a,Ae(this,a),ef);this.b-=this.g?9+(this.G&&6<=this.f?1:0):(this.F?5:3)+(7==this.f?2:0)}function fg(a){U(this,a,0,gf);this.b-=this.g?9:3+(7==this.f?2:0)}function gg(){this.ua(28,0,-9)}
|
||||
function hg(){this.v&&(this.v.Dc(this.u[7],!0),this.v.setData(this.u[0],!0));this.J|=8;Wd(this,-2);this.b-=3}function ig(a){U(this,a,this.u[(a>>6&7)+this.Ob],hf);this.b-=this.g?9:3+(7==this.f?2:0)}function W(a){var b;if(b=this.i)b=this.i,I(b,1)?(H(b,"undefined opcode "+M(b,a),!0,!0),b=Of(b)):b=!1;b||this.ua(8,0,-9)}function Md(a){jg[a>>12].call(this,a)}function kg(a){lg[a>>6&3].call(this,a)}function mg(a){ng[a>>6&3].call(this,a)}function og(a){pg[a>>6&3].call(this,a)}
|
||||
function qg(a){rg[a&15].call(this,a)}function sg(a){tg[a&15].call(this,a)}function ug(a){vg[a>>6&3].call(this,a)}function wg(a){xg[a>>6&3].call(this,a)}function yg(a){zg[a>>6&3].call(this,a)}
|
||||
var jg=[function(a){Ag[a>>8&15].call(this,a)},Vf,Jf,sf,of,qf,jf,W,function(a){Bg[a>>8&15].call(this,a)},Wf,Kf,tf,pf,rf,eg,W],Ag=[function(a){Cg[a>>4&15].call(this,a)},Ff,Cf,uf,vf,Af,wf,yf,Tf,Tf,kg,mg,og,W,W,W],lg=[function(a){Ge(this,a,0,this.yb);this.b-=this.g?9:3+(7==this.f?2:0)},function(a){U(this,a,0,Te);this.b-=this.g?9:3+(7==this.f?2:0)},function(a){U(this,a,1,Xe);this.b-=this.g?9:3+(7==this.f?2:0)},function(a){U(this,a,1,Ve);this.b-=this.g?9:3+(7==this.f?2:0)}],ng=[function(a){U(this,a,0,Ze);
|
||||
this.b-=this.g?11:6},function(a){U(this,a,Sd(this)?1:0,Je);this.b-=this.g?9:3+(7==this.f?2:0)},function(a){U(this,a,Sd(this)?1:0,ef);this.b-=this.g?9:3+(7==this.f?2:0)},function(a){a=De(this,a);this.yb(a);this.b-=this.g?4:3+(7==this.f?2:0)}],pg=[function(a){U(this,a,0,cf);this.b-=this.g?9:3+(7==this.f?2:0)},function(a){U(this,a,0,af);this.b-=this.g?9:3+(7==this.f?2:0)},function(a){U(this,a,0,Ne);this.b-=this.g?9:3+(7==this.f?2:0)},function(a){U(this,a,0,Le);this.b-=this.g?9:3+(7==this.f?2:0)}],Cg=
|
||||
[function(a){Dg[a&15].call(this,a)},W,W,W,Rf,Rf,Rf,Rf,ag,W,qg,sg,fg,fg,fg,fg],Dg=[Nf,hg,bg,Ef,Pf,$f,W,W,W,W,W,W,W,W,W,W],rg=[Zf,function(){this.V=0;this.b-=5},function(){this.W=0;this.b-=5},If,function(){this.Z=1;this.b-=5},If,If,If,function(){this.X=0;this.b-=5},If,If,If,If,If,If,If],tg=[Zf,function(){this.V=65536;this.b-=5},function(){this.W=32768;this.b-=5},cg,function(){this.Z=0;this.b-=5},cg,cg,cg,function(){this.X=32768;this.b-=5},cg,cg,cg,cg,cg,cg,cg],Bg=[Df,Bf,xf,zf,Gf,Hf,mf,nf,Mf,gg,ug,wg,
|
||||
yg,W,W,W],vg=[function(a){Fe(this,a,0,255,this.yb);this.b-=this.g?9:3+(7==this.f?2:0)},function(a){Ee(this,a,0,Ue);this.b-=this.g?9:3+(7==this.f?2:0)},function(a){Ee(this,a,1,Ye);this.b-=this.g?9:3+(7==this.f?2:0)},function(a){Ee(this,a,1,We);this.b-=this.g?9:3+(7==this.f?2:0)}],xg=[function(a){Ee(this,a,0,$e);this.b-=this.g?11:6},function(a){Ee(this,a,Sd(this)?1:0,Ke);this.b-=this.g?9:3+(7==this.f?2:0)},function(a){Ee(this,a,Sd(this)?1:0,ff);this.b-=this.g?9:3+(7==this.f?2:0)},function(a){a=Ce(this,
|
||||
a);this.yb(a<<8);this.b-=this.g?4:3+(7==this.f?2:0)}],zg=[function(a){Ee(this,a,0,df);this.b-=this.g?9+(this.rc&1):3+(7==this.f?2:0)},function(a){Ee(this,a,0,bf);this.b-=this.g?9:3+(7==this.f?2:0)},function(a){Ee(this,a,0,Oe);this.b-=this.g?9+(this.rc&1):3+(7==this.f?2:0)},function(a){Ee(this,a,0,Me);this.b-=this.g?9:3+(7==this.f?2:0)}];function Nd(a){Eg[a>>12].call(this,a)}
|
||||
var Eg=[function(a){Fg[a>>8&15].call(this,a)},Vf,Jf,sf,of,qf,jf,function(a){Gg[a>>8&15].call(this,a)},function(a){Hg[a>>8&15].call(this,a)},Wf,Kf,tf,pf,rf,eg,W],Fg=[function(a){Ig[a>>4&15].call(this,a)},Ff,Cf,uf,vf,Af,wf,yf,Tf,Tf,kg,mg,og,function(a){Jg[a>>6&3].call(this,a)},W,W],Jg=[function(a){a=this.u[7]+((a&63)<<1)&65535;var b=this.Ca(a|this.P);Rd(this,this.u[5]);this.u[6]=a+2&65535;this.u[5]=b;this.b-=8},function(a){a=xe(this,a,0);this.Fa(a);te(this,a);this.b-=11},function(a){var b=ve(this);
|
||||
this.L=this.b;this.Fa(b);ye(this,a,0,b);this.b=this.L-Xf[this.g]},function(a){Ge(this,a,Vd(this)?65535:0,this.Fa);this.b-=this.g?9:3+(7==this.f?2:0)}],Ig=[function(a){Kg[a&15].call(this,a)},W,W,W,Rf,Rf,Rf,Rf,ag,function(a){a&8?(this.O&49152||(this.O=this.O&-225|(a&7)<<5,this.J|=1,this.J&=-3),this.b-=5):W.call(this,a)},qg,sg,fg,fg,fg,fg],Kg=[Nf,hg,function(){ue(this);this.J|=this.O&16;this.b-=13},Ef,Pf,$f,bg,function(){this.ua(8,0,-9)},W,W,W,W,W,W,W,W],Gg=[Yf,Yf,Lf,Lf,kf,kf,lf,lf,ig,ig,W,W,W,W,dg,
|
||||
dg],Hg=[Df,Bf,xf,zf,Gf,Hf,mf,nf,Mf,gg,ug,wg,yg,function(a){Lg[a>>6&3].call(this,a)},W,W],Lg=[W,function(a){a=xe(this,a,65536);this.Fa(a);te(this,a);this.b-=11},function(a){var b=ve(this);this.L=this.b;this.Fa(b);ye(this,a,65536,b);this.b=this.L-Xf[this.g]},W];
|
||||
function Mg(a){z.call(this,"ROM",a,Mg,128);this.ka=this.B=null;this.A=a.addr;this.f=a.size;this.F=!1;this.v=a.alias;this.g=a.file;this.G=w(this.g);if(this.g){a=this.g;var b=pa(this.G);"json"!=b&&"hex"!=b&&(a=Ga()+"/api/v1/dump?file="+this.g+"&format=bytes&decimal=true");var c=this;Ea(a,null,!0,function(a,b,f){f?(c.M("Unable to load ROM resource (error "+f+": "+a+")"),c.g=null):(ob(c.rb,a,b),(a=Fa(a,b))?(c.B=a.ha,c.ka=a.ka):c.g=null);Ng(c)})}}E(Mg);h=Mg.prototype;
|
||||
h.Ia=function(a,b,c,d){this.w=b;this.b=c;this.i=d;Ng(this)};h.La=function(){this.ka&&(this.i&&Og(this.i,this.id,this.A,this.f,this.ka),delete this.ka);return!0};h.Ka=function(){return!0};
|
||||
function Ng(a){if(!Ab(a)){if(a.g){if(!a.B||!a.w)return;a.f||(a.f=a.B.length);if(a.B.length!=a.f)Cb(a,"ROM size ("+q(a.B.length,8,!0)+") does not match specified size ("+q(a.f,8,!0)+")");else{var b;a:{b=a.A;a.status(a.f+"-byte ROM at "+p(b));if(57344<=b&&b<57344+uc){var c={};b=(c[b]=[Mg.prototype.Ge,Mg.prototype.Jf,null,null,null,a.f>>1],c);if(Mb(a.w,a,b)){b=a.F=!0;break a}}else if(Ac(a.w,b,a.f,od)){for(c=0;c<a.B.length;c++)a.w.Lb(b+c,a.B[c]);b=!0;break a}b=!1}if(b){b=[];"number"==typeof a.v?b.push(a.v):
|
||||
null!=a.v&&a.v.length&&(b=a.v);for(c=0;c<b.length;c++){for(var d=a,e=b[c],f=d.w,g=d.f,k=[],l=d.A>>>f.Ba;0<g&&l<f.ga.length;)k.push(f.ga[l++]),g-=f.Ja;f=d.w;d=d.f;g=0;for(e>>>=f.Ba;0<d&&e<f.ga.length;){l=k[g++];if(!l)break;f.ga[e++]=l;d-=f.Ja}}a.F||delete a.B}}}K(a)}}h.Ge=function(a){return this.B[a-this.A]};h.Jf=function(){};db(function(){for(var a=G(document,"pdp11","rom"),b=0;b<a.length;b++){var c=a[b],d=F(c),d=new Mg(d);sb(d,c)}});
|
||||
function Pg(a){z.call(this,"RAM",a,Pg);this.ka=this.B=null;this.g=a.addr;this.v=a.size;this.Wa=a.load;this.Va=a.exec;this.A=!1;this.f=a.file;this.F=w(this.f);if(this.f){a=this.f;var b=pa(this.F);"json"!=b&&"hex"!=b&&(a=Ga()+"/api/v1/dump?file="+this.f+"&format=bytes&decimal=true");var c=this;Ea(a,null,!0,function(a,b,f){f?(c.M("Unable to load RAM resource (error "+f+": "+a+")"),c.f=null):(ob(c.rb,a,b),(a=Fa(a,b))?(c.B=a.ha,c.ka=a.ka,null==c.Wa&&(c.Wa=a.Wa),null==c.Va&&(c.Va=a.Va)):c.f=null);Qg(c)})}}
|
||||
E(Pg);Pg.prototype.Ia=function(a,b,c,d){this.w=b;this.b=c;this.i=d;Qg(this)};Pg.prototype.La=function(){this.ka&&(this.i&&Og(this.i,this.id,this.g,this.v,this.ka),delete this.ka);return!0};Pg.prototype.Ka=function(){return!0};function Qg(a){if(a.w&&(!a.A&&a.v&&(Ac(a.w,a.g,a.v,Jc)?a.A=!0:a.v=0),!Ab(a))){if(!a.A)x("No RAM allocated");else if(a.f){if(!a.B||!a.w)return;Rg(a,a.B,a.Wa,a.Va,a.g)}K(a)}}
|
||||
Pg.prototype.reset=function(){if(this.A){for(var a=this.w,b=this.g,c=this.v,d=b&a.w,b=b>>>a.Ba;0<c&&b<a.ga.length;){var e=a.ga[b],f=c,g=0,k,d=d||0,g=g&255;void 0===f&&(f=e.size);if(Db&&e.D)for(k=d;f--&&k<e.D.length;k++)e.D[k]=g;else for(k=d;f--&&k<e.size;k++)e.G(d,g,e.H+d);c-=a.Ja;b++;d=0}this.B&&Rg(this,this.B,this.Wa,this.Va,this.g,!0)}};
|
||||
function Rg(a,b,c,d,e,f){var g=!1,k=!1;if(null==c)for(var l=0;l<b.length-1;){var m=b[l]&255|(b[l+1]&255)<<8;if(m)if(m&255){var n=l;if(1!=m){H(a,"invalid signature ("+v(m)+") at offset "+v(n),4096);break}if(l+6>=b.length){H(a,"invalid block at offset "+v(n),4096);break}for(var l=l+2,r=b[l++]&255|(b[l++]&255)<<8,u=b[l++]&255|(b[l++]&255)<<8,m=m+((r&255)+(r>>8)+(u&255)+(u>>8)),t=l,C=r-=6;0<r&&l<b.length;)m+=b[l++]&255,r--;if(r||l>=b.length){H(a,"insufficient data for block at offset "+v(n),4096);break}m+=
|
||||
b[l++]&255;if(m&255){H(a,"invalid checksum ("+q(m,2,!0)+") for block at offset "+v(n),4096);break}if(C)for(H(a,"loading "+v(C)+" bytes at "+v(u)+"-"+v(u+C-1),4096);C--;)a.w.Lb(u++,b[t++]&255);else u&1?g=!0:null==d&&(d=u),null!=d&&H(a,"starting address: "+v(d),4096);k=!0}else l++;else l+=2}if(!k&&(null==c&&(c=e),null!=c)){for(e=0;e<b.length;e++)a.w.Lb(c+e,b[e]);k=!0}if(k){if(null==d||g)a.b.ea(),f=!1;null!=d&&Qd(a.b,d,f)}return k}
|
||||
db(function(){for(var a=G(document,"pdp11","ram"),b=0;b<a.length;b++){var c=a[b],d=F(c),d=new Pg(d);sb(d,c)}});function Sg(a){z.call(this,"Keyboard",a,Sg,1024);K(this)}E(Sg);Sg.prototype.xa=function(){return!1};Sg.prototype.Ia=function(a,b,c,d){this.B=a;this.b=c;this.i=d};db(function(){for(var a=G(document,"pdp11","keyboard"),b=0;b<a.length;b++){var c=a[b],d=F(c),d=new Sg(d);sb(d,c)}});
|
||||
function Tg(a){this.L=a.adapter;this.Y=a.baudReceive||9600;this.wa=a.baudTransmit||9600;this.va=a.upperCase;this.v=this.F=null;this.na=a.tabSize;this.ba=a.charBOL;this.G=0;this.K=!0;z.call(this,"SerialPort",a,Tg,262144);var b=a.binding;if("console"==b)this.F="";else{var c;a=Ug;b&&(void 0===c&&(c="Panel"),(c=rb(c,this.id))&&(b=c.D[b])&&this.xa(null,a,b))}this.A=this.P=this.S=null;this.exports={connect:this.bd,receiveData:this.mc,receiveStatus:this.We}}E(Tg);var Ug="buffer";h=Tg.prototype;
|
||||
h.xa=function(a,b,c){var d=this;switch(b){case Ug:return this.D[b]=this.v=c,c.onkeydown=function(a){a=a||window.event;var b=0,c=a.keyCode;8==c?b=a.altKey?la.Jc:la.od:46==c?b=la.Jc:a.ctrlKey&&c>=la.Gc&&c<=la.vd&&(b=c-(la.Gc-la.ld));b&&(a.preventDefault&&a.preventDefault(),d.mc(b));return!0},c.onkeypress=function(a){a=a||window.event;var b=a.which||a.keyCode;a.altKey&&b==la.nd&&(b=la.md);d.mc(b);a.preventDefault&&a.preventDefault();return!0},c.onpaste=function(a){a.stopPropagation&&a.stopPropagation();
|
||||
a.preventDefault&&a.preventDefault();(a=a.clipboardData||window.clipboardData)&&d.mc(a.getData("Text"))},c.removeAttribute("readonly"),!0}return!1};
|
||||
h.Ia=function(a,b,c,d){this.B=a;this.w=b;this.b=c;this.i=d;var e=this;this.ca=Pc(this.b,this.L?-1:48,4,262144);this.oa=Mc(this.b,function(){var a;a=-1;e.I.length&&(a=e.I.shift()&255,H(e,"receiveByte("+q(a,2,!0)+")"),e.va&&97<=a&&122>a&&(a-=32),Oc(e.b,e.oa,1E3/Math.round(e.Y/10)));0<=a&&(e.N=a,e.f&128?e.N|=49152:e.f|=128,e.f&64&&Nc(c,e.ca))});this.T=Pc(this.b,this.L?-1:52,4,262144);this.za=Mc(this.b,function(){e.g|=128;e.g&64&&Nc(c,e.T)});Mb(b,this,Vg,this.L?64832+8*(this.L-1)-65392:0);Ob(b,this.reset.bind(this));
|
||||
K(this)};h.bd=function(a){if(!this.A){var b=Bd(this.B,"connection");if(b){var c=b.split("->");if(2==c.length){var d=ua(c[0]);if(d!=this.qb)return;c=ua(c[1]);if(this.A=qb(c)){var e=this.A.exports;if(e){var f=e.connect;f&&f.call(this.A,this.K);if(this.P=e.receiveData){this.K=a;this.S=e.receiveStatus;this.status(this.rb+"."+d+" connected to "+c);return}}}}this.status("Unable to establish connection: "+b)}}};
|
||||
h.La=function(a,b){if(!b)if(this.bd(this.K),!a||!this.restore)this.reset();else if(!this.restore(a))return!1;return!0};h.Ka=function(a){return a?this.save():!0};h.reset=function(){Wg(this)};h.save=function(){var a=new T(this);a.set(0,[]);return a.data()};h.restore=function(){return Wg(this)};function Wg(a){a.N=0;a.f=8192;a.g=128;a.I=[];return!0}
|
||||
h.mc=function(a){if("number"==typeof a)this.I.push(a);else if("string"==typeof a)for(var b=0,c,d=0;d<a.length;d++){c=b;b=a.charCodeAt(d);if(10==b){if(13==c)continue;b=13}this.I.push(b)}else this.I=this.I.concat(a);Oc(this.b,this.oa,1E3/Math.round(this.Y/10));return!0};h.We=function(a){var b=this.f;this.f&=-12289;a&32&&(this.f|=8192);a&256&&(this.f|=4096);b!=this.f&&(this.f|=32768,this.f&32&&Nc(this.b,this.ca))};h.te=function(){var a=this.f&65534;this.f&=-32769;return a};
|
||||
h.wf=function(a){var b=a^this.f;this.f=this.f&-112|a&111;this.S&&b&6&&(b=0,b=this.K?b|(a&4?32:0)|(a&2?320:0):b|(a&4?16:0)|(a&2?1048576:0),this.S.call(this.A,b))};h.se=function(){this.f&=-129;return this.N};h.vf=function(){};h.Ve=function(){return this.g};h.Yf=function(a){this.g&128&&(a&64?Nc(this.b,this.T):Sc(this.b,this.T));this.g=this.g&-70|a&69};h.Ue=function(){return 0};
|
||||
h.Xf=function(a){a&=255;H(this,"transmitByte("+q(a,2,!0)+")");this.P&&this.P.call(this.A,a);a&=127;if(this.v)if(13==a)this.G=0;else if(8==a)this.v.value=this.v.value.slice(0,-1),0<this.G&&this.G--;else{if(a){var b;b=(b=13!=a&&10!=a?va[a]:null)?"<"+b+">":String.fromCharCode(a);var c=b.length;32>a&&1==c&&(c=0);9==a&&(a=this.na||8,c=a-this.G%a,this.na&&(b=ta("",c)));this.ba&&!this.G&&c&&(b=String.fromCharCode(this.ba)+b);this.v.value+=b;this.v.scrollTop=this.v.scrollHeight;this.G+=c}}else if(null!=this.F){if(10==
|
||||
a||1024<=this.F.length)this.j(this.F),this.F="";10!=a&&(this.F+=String.fromCharCode(a))}Oc(this.b,this.za,1E3/Math.round(this.wa/10));this.g&=-129};var Xg={},Vg=(Xg[65392]=[null,null,Tg.prototype.te,Tg.prototype.wf,"RCSR"],Xg[65394]=[null,null,Tg.prototype.se,Tg.prototype.vf,"RBUF"],Xg[65396]=[null,null,Tg.prototype.Ve,Tg.prototype.Yf,"XCSR"],Xg[65398]=[null,null,Tg.prototype.Ue,Tg.prototype.Xf,"XBUF"],Xg);
|
||||
db(function(){for(var a=G(document,"pdp11","serial"),b=0;b<a.length;b++){var c=a[b],d=F(c),d=new Tg(d);sb(d,c)}});function id(a){z.call(this,"PC11",a,id);this.N=Yg(this,a.autoMount);this.g=0;this.ba=a.baudReceive||3600;this.I=this.K=this.f=0;this.G=[];this.F=Zg;this.v=$g;this.L=this.A="";this.ha=this.Wa=this.Va=null;this.T=-1;this.P=!Pa("Mobi")&&window&&"FileReader"in window}E(id);var Zg="",$g=0;
|
||||
function Yg(a,b){if(b&&"string"==typeof b)try{b=eval("("+b+")")}catch(c){x(a.type+" auto-mount error: "+c.message+" ("+b+")"),b=null}return b||{}}h=id.prototype;
|
||||
h.xa=function(a,b,c){var d=this,e=$g;switch(b){case "listTapes":return this.D[b]=c,c.onchange=function(){var a=d.D.descTape,b=c.options[c.selectedIndex];if(a&&b){var e={};if(b=b.getAttribute("data-value"))try{e=eval("("+b+")")}catch(l){x("PC11 option error: "+l.message)}b=e.desc;void 0===b&&(b="");e=e.href;void 0!==e&&(b='<a href="'+e+'" target="_blank">'+b+"</a>");a.innerHTML=b}},!0;case "descTape":return this.D[b]=c,!0;case "readTape":e=2;case "loadTape":return e||(e=1),this.D[b]=c,c.onclick=function(){var a=
|
||||
d.D.listTapes;a&&ah(d,a.options[a.selectedIndex].text,a.value,e)},!0;case "mountTape":if(!this.P){c.parentNode.removeChild(c);break}this.D[b]=c;c.addEventListener("change",function(){var a=c.children[0];a.children[1].disabled=!a.children[0].files.length});c.onsubmit=function(a){if(a=a.currentTarget[1].files[0]){var b=a.name;ah(d,w(b,!0),b,1,a)}return!1};return!0;case "readProgress":return this.D[b]=c,!0}return!1};
|
||||
h.Ia=function(a,b,c,d){this.B=a;this.w=b;this.b=c;this.i=d;this.Y=bh(a);var e=this;if(a=Yg(this,Bd(this.B,"autoMount")))for(var f in a)"PTR"==f&&(this.N[f]=a[f]);this.S=Pc(this.b,56,4,4096);this.ca=Mc(this.b,function(){1==(e.f&32769)&&!(e.f&128)&&e.I<e.G.length&&(e.K=e.G[e.I++]&255,ch(e,e.I/e.G.length*100),e.f|=128,e.f&=-2049,e.f&64&&Nc(e.b,e.S))});Mb(b,this,yh);Ob(b,this.reset.bind(this));zh(this,"None",Zg,!0);this.P&&zh(this,"Local Tape","?");zh(this,"Remote Tape","??");Ah(this)||K(this)};
|
||||
h.La=function(a,b){if(!b)if(!a||!this.restore)this.reset();else if(!this.restore(a))return!1;return!0};h.Ka=function(a){return a?this.save():!0};h.reset=function(){this.f&=-2241;this.K=0};function Ah(a){a.g=0;var b=a.N.PTR;if(b){var c=b.path||"";if(!(b=b.name))a:{if((b=a.D.listTapes)&&b.options)for(var d=0;d<b.options.length;d++){var e=b.options[d];if(e.value==c){b=e.text;break a}}b=w(c,!0)}c&&b?Bh(a,b,c,1,!0):Ch(a)}return!!a.g}
|
||||
function ah(a,b,c,d,e){if(c)if("?"==c)a.M('Use "Choose File" and "Mount" to select and load a local tape.');else{if("??"==c){c=window.prompt("Enter the URL of a remote tape image.","")||"";if(!c)return;b=w(c);a.status("Attempting to load "+c+' as "'+b+'"');a.F="??"}else a.F=c;Bh(a,b,c,d,!1,e)}else Dh(a,!1)}
|
||||
function Bh(a,b,c,d,e,f){var g=-1;if(a.A.toLowerCase()!=c.toLowerCase()||a.v!=d)g++,Dh(a,!0),a.C.tb?a.M("PC11 busy"):(e&&(a.g++,I(a)&&H(a,"auto-loading tape: "+b)),Eh(a,b,c,d,f)?g++:a.C.tb=!0);g&&Fh(a,a.L,a.A,a.v,a.ha,a.Wa,a.Va)}
|
||||
function Eh(a,b,c,d,e){var f=c;if(e){var g=new FileReader;g.onload=function(){var e=g.result;e&&(e=new Uint8Array(e,0,e.byteLength),Fh(a,b,c,d,e),a.F="?");Ch(a)};g.readAsArrayBuffer(e);return!0}0>c.indexOf("/api/v1/dump")&&(e=pa(c),f="json"==e||"gz"==e?encodeURI(c):Ga()+"/api/v1/dump?path="+encodeURIComponent(c)+"&format=json");return!!Ea(f,null,!0,function(e,f,g){var k=0>g&&a.B&&!a.B.C.ma;g?a.M('Unable to load tape "'+b+'" (error '+g+": "+e+")",k):(ob(a.rb,e,f),(e=Fa(e,f))&&Fh(a,b,c,d,e.ha,e.Wa,
|
||||
e.Va));a.C.tb=!1;a.g&&(a.g--,a.g||K(a));Ch(a)})}function zh(a,b,c,d){if((a=a.D.listTapes)&&a.options){for(var e=0;e<a.options.length;e++)if(a.options[e].value==c)return;e=document.createElement("option");e.text=b;e.value=c;d&&a.childNodes[0]?a.insertBefore(e,a.childNodes[0]):a.appendChild(e)}}
|
||||
function Ch(a){var b=a.D.listTapes;if(b&&b.options){a=a.F||a.A;for(var c=0;c<b.options.length;c++)if(b.options[c].value==a){b.selectedIndex!=c&&(b.selectedIndex=c);break}c==b.options.length&&(b.selectedIndex=0)}}function ch(a,b){b|=0;if(b!==a.T){var c=a.D.readProgress;c&&(c=(c=G(c,"pcjs-progress-bar"))&&c[0])&&c.style&&(c.style.width=b+"%");a.T=b}}
|
||||
function Fh(a,b,c,d,e,f,g){a.L=b;a.A=c;a.v=d;a.ha=e;a.Wa=f;a.Va=g;2==d?a.Y&&Rg(a.Y,e,f,g,null,!1)?a.status('Read tape "'+b+'"'):a.M('No valid memory address for tape "'+b+'"'):(a.I=0,a.G=e,a.status('Loaded tape "'+b+'"'),ch(a,0))}function Dh(a,b){if(a.A||!1===b)a.L="",a.A="",b||(a.v&&a.status(1==a.v?"tape detached":"tape unloaded"),a.F=Zg,a.v=$g,Ch(a))}h.save=function(){return(new T(this)).data()};h.restore=function(){return!0};h.me=function(){return this.f&65534};
|
||||
h.pf=function(a){a&1&&(this.f&32768?(a&=-2,this.f&64&&Nc(this.b,this.S)):(this.f&=-129,this.f|=2048,this.K=0,Oc(this.b,this.ca,1E3/Math.round(this.ba/10))));this.f=this.f&-66|a&65};h.le=function(){this.f&=-129;this.f|=2048;return this.K};h.nf=function(){};var Gh={},yh=(Gh[65384]=[null,null,id.prototype.me,id.prototype.pf,"PRS"],Gh[65386]=[null,null,id.prototype.le,id.prototype.nf,"PRB"],Gh);
|
||||
function Hh(a,b,c){z.call(this,"Disk",{id:a.rb+".disk"+q(++Ih,4)},Hh,8192);this.controller=a;this.B=a.B;this.i=a.i;this.v=b;this.Xa=b.name;this.hc=b.hc;Jh(this,c,b.da,b.la,b.ja,b.Aa);K(this)}var Ih=0;E(Hh);h=Hh.prototype;h.Ia=function(a,b,c,d){this.i=d};
|
||||
function Jh(a,b,c,d,e,f){a.mode=b;a.da=c;a.la=d;a.ja=e;a.Aa=f;a.b=[];if("preload"!=a.mode){b=Array(a.da);for(c=0;c<b.length;c++){d=Array(a.la);for(e=0;e<d.length;e++){f=Array(a.ja);for(var g=1;g<=f.length;g++)f[g-1]=Kh(null,c,e,g,a.Aa,0);d[e]=f}b[c]=d}a.b=b}a.f=null}
|
||||
function Lh(a,b,c,d,e){var f=c;if(a.w)return!0;a.Xa=b;a.Oa=c;a.Cc=w(c);a.w=e;a.A=a.controller;if(d){var g=new FileReader;g.onload=function(){var b=g.result,c,d=b?b.byteLength:0,e=ka[d];if(e){a.da=e[0];a.la=e[1];a.ja=e[2];a.Aa=e[3]||512;c=a.Aa>>2;var f=e=0,b=new DataView(b,0,d);a.b=Array(a.da);for(d=0;d<a.b.length;d++)for(var u=a.b[d]=Array(a.la),t=0;t<u.length;t++)for(var C=u[t]=Array(a.ja),y=0;y<C.length;y++){for(var A=Kh(null,d,t,y+1,a.Aa,0),D=A.data,Ua=0;Ua<c;Ua++,f+=4)var S=D[Ua]=b.getInt32(f,
|
||||
!0),e=e+S&-1;A.Qa=c;C[y]=A}a.f=e;c=a}else a.M("Unrecognized disk format ("+d+" bytes)");a.w&&(a.w.call(a.controller,a.v,c,a.Xa,a.Oa),a.w=null)};g.readAsArrayBuffer(d);return!0}0>c.indexOf("/api/v1/dump")&&(b=pa(c),"json"==b||"gz"==b?f=encodeURI(c):(d="path",e="&mbhd=10",!c.indexOf("http:")||!c.indexOf("ftp:")||0<="dsk ima img 360 720 12 144".split(" ").indexOf(b)?(d="disk",e="&mbhd=0"):qa(c,"/")&&(d="dir"),f=Ga()+"/api/v1/dump?"+d+"="+encodeURIComponent(c)+(a.hc?"":e)+"&format=json"));return!!Ea(f,
|
||||
null,!0,function(b,c,d){Mh(a,b,c,d)})}
|
||||
function Mh(a,b,c,d){var e=null;a.g=!1;var f=0>d&&a.B&&!a.B.C.ma;if(d)a.controller.M('Unable to load disk "'+a.Xa+'" (error '+d+": "+b+")",f);else{ob(a.controller.rb,b,c);try{if(0<w(a.Cc,!0).toLowerCase().indexOf("-readonly"))a.g=!0;else{var g=c.indexOf("\n");0<g&&1024>g&&0<c.substring(0,g).indexOf("write-protected")&&(a.g=!0)}var k;"<"==c.substr(0,1)?k=["Missing disk image: "+a.Xa]:k=0>c.indexOf("0x")&&'["'!=c.substr(0,2)?JSON.parse(c.replace(/([a-z]+):/gm,'"$1":').replace(/\/\/[^\n]*/gm,"")):eval("("+
|
||||
c+")");if(k.length)if(1==k.length)x(k[0]);else{a.da=k.length;a.la=k[0].length;a.ja=k[0][0].length;var l=k[0][0][0];a.Aa=l&&l.length||512;for(d=c=0;d<a.da;d++)for(f=0;f<a.la;f++)for(g=0;g<a.ja;g++)if(l=k[d][f][g]){var m=l.length;void 0===m&&(m=l.length=512);var m=m>>2,n=l.pattern;void 0===n&&(n=l.pattern=0);var r=l.data;if(void 0===r){var u=l.bytes;if(void 0!==u&&u.length){for(var t=m<<2,C=u.length;C<t;C++)u[C]=n;Nh(l,u)}else r=[],n=l.pattern=n|n<<8|n<<16|n<<24,l.data=r;delete l.bytes}Kh(l,d,f);for(t=
|
||||
0;t<r.length;t++)c=c+r[t]&-1}a.b=k;a.f=c;e=a}else x("Empty disk image: "+a.Xa)}catch(y){x("Disk image error ("+b+"): "+y.message)}}a.w&&(a.w.call(a.A,a.v,e,a.Xa,a.Oa),a.w=null)}function Kh(a,b,c,d,e,f){a||(a={sector:d,length:e,data:[],pattern:f});a.Zg=b;a.$g=c;a.eb=a.Qa=0;a.kb=!1;return a}
|
||||
h.seek=function(a,b,c,d,e){d=null;var f=this.v,g=this.b[a];if(g){var k=g[b];if(!k&&f.zd&&b<f.la)for(k=g[b]=Array(f.Uc),g=0;g<k.length;g++)k[g]=Kh(null,a,b,g+1,f.zc,0);if(k){for(g=0;g<k.length;g++)if(k[g]&&k[g].sector==c){d=k[g];break}!d&&f.zd&&9==f.vc&&(d=k[g]=Kh(null,a,b,f.vc,f.zc,0))}}e&&e(d,!1);return d};function Nh(a,b){for(var c=0,d=a.length>>2,e=Array(d),f=0;f<d;f++)e[f]=b[c]|b[c+1]<<8|b[c+2]<<16|b[c+3]<<24,c+=4;a.data=e}
|
||||
h.read=function(a,b){var c=-1;if(a&&b<a.length)var c=a.data,d=b>>2,c=(d<c.length?c[d]:a.pattern)>>((b&3)<<3)&255;return c};h.write=function(a,b,c){if(this.g)return!1;if(b<a.length){if(c!=this.read(a,b,!0)){var d=a.data,e=a.pattern,f=b>>2;b=(b&3)<<3;for(var g=d.length;g<=f;g++)d[g]=e;a.Qa?f<a.eb?(a.Qa+=a.eb-f,a.eb=f):f>=a.eb+a.Qa&&(a.Qa+=f-(a.eb+a.Qa)+1):(a.eb=f,a.Qa=1);d[f]=d[f]&~(255<<b)|c<<b}return!0}return null};
|
||||
function Oh(a,b){var c=a.la*a.ja,d=b/c|0;return d<a.da?(b%=c,a.seek(d,b/a.ja|0,b%a.ja+1)):null}function Ph(a,b,c){for(var d=1,e=0,f=0;d--;){var g=a.read(b,c++);if(0>g)break;e|=g<<f;f+=8}return e}function Qh(a){for(var b="",c=0,d;d=Oh(a,c++);)for(var e=0,f=d.length;e<f;e++)b+=String.fromCharCode(Ph(a,d,e));return btoa(b)}
|
||||
h.save=function(){var a=0,b=[];b[a++]=[this.Oa,this.f,this.da,this.la,this.ja,this.Aa];if(!this.g)for(var c=this.b,d=0;d<c.length;d++)for(var e=0;e<c[d].length;e++)for(var f=0;f<c[d][e].length;f++){var g=c[d][e][f];if(g&&g.Qa){for(var k=[],l=0,m=g.eb,n=g.eb+g.Qa;m<n;)k[l++]=g.data[m++];b[a++]=[d,e,f,g.eb,k]}}return b};
|
||||
h.restore=function(a){var b=0,c="unsupported restore format";if(a&&0<a.length){var d=0,e=a[d++];e&&2<=e.length&&(!this.b.length&&6<=e.length?Jh(this,"local",e[2],e[3],e[4],e[5]):null!=e[1]&&null!=this.f&&e[1]!=this.f&&(c="original checksum ("+e[1]+") differs from current checksum ("+this.f+")",b=-2));for(this.b.length||(b=-1);d<a.length&&0<=b;){var f=0,g=a[d++],k=g[f++],l=g[f++],m=g[f++];if(k>=this.b.length||l>=this.b[k].length||m>=this.b[k][l].length){c="sector (CHS="+k+":"+l+":"+m+") out of range ("+
|
||||
b+" changes applied)";b=-1;break}if(this.g){c="unable to modify write-protected disk";b=-1;break}e=g[f++];f=g[f++];g=e+f.length;if(k=this.b[k][l][m]){for(l=k.data.length;l<e;)k.data[l++]=k.pattern;l=0;k.eb=e;for(k.Qa=f.length;e<g;)k.data[e++]=f[l++];b++}}}0>b&&-2!=b&&this.controller.M("Unable to restore disk '"+this.Xa+": "+c);return b};
|
||||
h.toJSON=function(){var a;a=0;for(var b;b=Oh(this,a++);)Rh(b);a=JSON.stringify(this.b,function(a,b){if("file"!=a)return b});a=a.replace(/,"length":512/gm,"").replace(/,"pattern":0/gm,"");a=a.replace(/"(sector|length|data|pattern)":/gm,"$1:");a=a.replace(/,"[^"]*":([0-9]+|true|false)/gm,"");a=a.replace(/(sector|length|data|pattern):/gm,'"$1":');return a=a.replace(/([\]}]),/gm,"$1,\n")};
|
||||
function Rh(a){var b=a.data,c=b.length;if(c<<2==a.length){for(var d=c-1,e=b[d],f=0;d--&&b[d]===e;)f++;f++&&(b.length=c-f,a.pattern=e)}}function R(a){z.call(this,"RK11",a,R,65536);this.K=Sh(this,a.autoMount);this.F=0;this.g=Array(8);this.L=!Pa("Mobi")&&window&&"FileReader"in window}E(R);function Sh(a,b){if(b&&"string"==typeof b)try{b=eval("("+b+")")}catch(c){x(a.type+" auto-mount error: "+c.message+" ("+b+")"),b=null}return b||{}}h=R.prototype;
|
||||
h.xa=function(a,b,c){var d=this;switch(b){case "listDisks":return this.D[b]=c,c.onchange=function(){var a=d.D.descDisk,b=c.options&&c.options[c.selectedIndex];if(a&&b){var g={};if(b=b.getAttribute("data-value"))try{g=eval("("+b+")")}catch(k){x("RK11 option error: "+k.message)}b=g.desc;void 0===b&&(b="");g=g.href;void 0!==g&&(b='<a href="'+g+'" target="_blank">'+b+"</a>");a.innerHTML=b}},!0;case "descDisk":case "listDrives":return this.D[b]=c,c.onchange=function(){var a=ma(c.value,10);null!=a&&Th(d,
|
||||
a)},!0;case "loadDisk":return this.D[b]=c,c.onclick=function(){var a=d.D.listDisks;a&&a.options&&Uh(d,a.options[a.selectedIndex].text,a.value)},!0;case "bootDisk":return this.D[b]=c,c.onclick=function(){var a,b=d.D.listDrives,b=b&&ma(b.value,10);null==b||0>b||b>=d.g.length||!(a=d.g[b])?d.M("Unable to boot the selected drive"):a.sa?(Qd(d.b,0,!0),(a=d.Kc(a,0,0,0,512,0,2))&&d.M("Unable to read the boot sector ("+a+")")):d.M("Load a disk into the drive first")},!0;case "saveDisk":if(!this.L){c.parentNode.removeChild(c);
|
||||
break}this.D[b]=c;c.onclick=function(){var a=d.D.listDrives;a&&a.options&&d.g&&((a=d.g[ma(a.value,10)||0])?(a=a.sa)?(a=Qa(Qh(a),a.Cc.replace(".json",".img")),x(a)):d.M("No disk loaded in drive."):d.M("No disk drive selected."))};return!0;case "mountDisk":if(this.L)return this.D[b]=c,c.addEventListener("change",function(){var a=c.children[0];a.children[1].disabled=!a.children[0].files.length}),c.onsubmit=function(a){if(a=a.currentTarget[1].files[0]){var b=a.name;Uh(d,w(b,!0),b,a)}return!1},!0;c.parentNode.removeChild(c)}return!1};
|
||||
h.Ia=function(a,b,c,d){this.B=a;this.w=b;this.b=c;this.i=d;if(a=Sh(this,Bd(this.B,"autoMount")))for(var e in a)e.substr(0,2)==this.type.substr(0,2)&&(this.K[e]=a[e]);Vh(this);this.Tb=Pc(this.b,144,5,65536);Mb(b,this,Wh);Ob(b,this.reset.bind(this));Xh(this,"None","",!0);this.L&&Xh(this,"Local Disk","?");Xh(this,"Remote Disk","??");Yh(this)||K(this)};
|
||||
h.La=function(a,b){if(!b){if(!a||!this.restore){if(this.reset(),this.B.yc){for(a=0;a<this.g.length;a++)Zh(this,a,!0);Yh(this,!0)}}else if(!this.restore(a))return!1;if(a=this.D.listDrives){for(;a.firstChild;)a.removeChild(a.firstChild);a.value="";for(b=0;8>b;b++){var c=document.createElement("option");c.value=b;c.text="RK"+b;a.appendChild(c)}a.value="0";Th(this,0)}}return!0};h.Ka=function(a){return a?this.save():!0};h.reset=function(){Vh(this)};h.save=function(){return(new T(this)).data()};
|
||||
h.restore=function(a){return Vh(this,a[0])};function Yh(a,b){b||(a.F=0);for(var c in a.K){var d=a.K[c],e=d.path||"",f;if(!(f=d.name))a:{if((f=a.D.listDisks)&&f.options)for(var g=0;g<f.options.length;g++){var k=f.options[g];if(k.value==e){f=k.text;break a}}f=w(e,!0)}if(e&&f&&(g=-1,c&&(g=c.charCodeAt(c.length-1)-48,0>g||9<g)&&(g=-1),0<=g&&g<a.g.length)){!$h(a,g,f,e,!0)&&b&&K(a,!1);continue}a.M("Incorrect auto-mount settings for drive "+c+" ("+JSON.stringify(d)+")")}return!!a.F}
|
||||
function Uh(a,b,c,d){var e=a.D.listDrives,e=e&&ma(e.value,10);if(void 0===e||0>e||e>=a.g.length)a.M("Unable to load the selected drive");else if(c)if("?"==c)a.M('Use "Choose File" and "Mount" to select and load a local disk.');else{if("??"==c){c=window.prompt("Enter the URL of a remote disk image.","")||"";if(!c)return;b=w(c);a.status("Attempting to load "+c+' as "'+b+'"')}$h(a,e,b,c,!1,d)}else Zh(a,e)}
|
||||
function $h(a,b,c,d,e,f){var g=-1,k=a.g[b];k.Oa.toLowerCase()!=d.toLowerCase()&&(g++,Zh(a,b,!0),k.Db?a.M("RK11 busy"):(k.Db=!0,e&&(k.Cb=!0,a.F++,I(a)&&H(a,"auto-loading disk: "+c)),k.lb=!!f,Lh(new Hh(a,k,"preload"),c,d,f,a.qd)&&g++));return g}
|
||||
h.qd=function(a,b,c,d,e){a.Db=!1;b&&(b.da>a.da||b.la>a.la)&&(this.M('Disk "'+c+'" too large for drive '+("RK"+a.Fb)),b=null);b?(a.sa=b,a.Xa=c,a.Oa=d,this.M('Loaded disk "'+c+'" in drive '+("RK"+a.Fb),a.Cb||e),this.B&&this.B.wb()):a.lb=!1;a.Cb&&(a.Cb=!1,--this.F||K(this));Th(this,a.Fb)};
|
||||
function Xh(a,b,c,d){if((a=a.D.listDisks)&&a.options){for(var e=0;e<a.options.length;e++)if(a.options[e].value==c)return;e=document.createElement("option");e.text=b;e.value=c;d&&a.childNodes[0]?a.insertBefore(e,a.childNodes[0]):a.appendChild(e)}}
|
||||
function Th(a,b){if(0<=b&&b<a.g.length){var c=a.g[b],d=a.D.listDisks;a=a.D.listDrives;if(d&&a&&d.options&&a.options&&(a=ma(a.value,10),c=c.lb?"?":c.Oa,!isNaN(a)&&a==b)){for(b=0;b<d.options.length;b++)if(d.options[b].value==c){d.selectedIndex!=b&&(d.selectedIndex=b);break}b==d.options.length&&(d.selectedIndex=0)}}}function Zh(a,b,c){var d=a.g[b];if(d.sa||!1===c)d.Xa="",d.Oa="",d.sa=null,d.lb=!1,c||(a.M("Drive RK"+b+" unloaded",c),Th(a,b))}
|
||||
function Vh(a,b){var c=0;b||(b=[]);a.P=b[c++]||2496;a.v=b[c++]||0;a.f=b[c++]||128;a.I=b[c++]||0;a.G=b[c++]||0;a.A=b[c++]||0;a.N=b[c]||0;for(b=0;b<a.g.length;b++){var d=a.g[b];void 0===d&&(d=a.g[b]={});c=a;d.Fb=b;d.name=c.qb;d.Db=d.lb=!1;d.da=203;d.la=2;d.ja=12;d.Aa=512;d.hc=!0;d.Ad=0;d.yd=0;d.vc=1;d.Uc=d.ja;d.zc=d.Aa;d.Nd=0;d.Ye=null;d.sa||(d.Oa="");d.status=2368}return!0}
|
||||
h.pd=function(a,b,c,d,e,f){this.G=f&65535;this.f=this.f&-49|f>>12&48;this.I=65536-e&65535;this.A=this.A&-16|d&15;a&&(this.v=this.v|a|32768,this.f|=49152);return!0};
|
||||
h.Kc=function(a,b,c,d,e,f,g,k,l){var m=0;a=a.sa;var n=null,r;a||(m=128,e=0);for(;e--;){if(!n){n=a.seek(b,c,d+1);if(!n){m=4096;break}r=0}var u,t;if(0>(u=a.read(n,r++))||0>(t=a.read(n,r++))){m=32;break}if(!k&&(this.w.Mb(f,u|t<<8),Lc(this.w))){m=1024;break}f+=g;if(r>=a.Aa&&(n=null,++d>=a.ja&&(d=0,++c>=a.la&&(c=0,++b>=a.da)))){m=64;break}}return l?l(m,b,c,d,e,f):m};
|
||||
h.rd=function(a,b,c,d,e,f,g,k,l){var m=0;a=a.sa;var n=null,r;a||(m=128,e=0);for(;e--;){var u=this.w.Eb(f);if(Lc(this.w)){m=1024;break}f+=g;if(!n){n=a.seek(b,c,d+1,!0);if(!n){m=4096;break}r=0}if(k){var t,C;if(0>(t=a.read(n,r++))||0>(C=a.read(n,r++))){m=32;break}if(u!=(t|C<<8)){m=1;break}}else if(!a.write(n,r++,u&255)||!a.write(n,r++,u>>8)){m=32;break}if(r>=a.Aa&&(n=null,++d>=a.ja&&(d=0,++c>=a.la&&(c=0,++b>=a.da)))){m=64;break}}return l?l(m,b,c,d,e,f):m};h.ye=function(){return this.P};h.Bf=function(){};
|
||||
h.ze=function(){return this.v};h.Cf=function(){};h.ve=function(){return this.f&61438};
|
||||
h.yf=function(a){this.f=this.f&-3968|a&3967;if(this.f&1){a=!0;var b,c="",d=(this.A&57344)>>13,e=this.g[d],f,g,k,l,m,n;this.f&=-129;var r=(this.f&14)>>1;switch(r){case 0:I(this)&&H(this,this.type+": CRESET("+d+")",!0);this.v=0;this.f=128;this.A=0;break;case 4:f=(this.A&8160)>>5;I(this)&&H(this,this.type+": SEEK("+f+")",!0);f>=e.da&&(this.v|=32832,this.f|=49152);break;case 5:c="RCHK";case 2:c||(c="READ"),b=this.Kc;case 3:c||(c="WCHK");case 1:c||(c="WRITE");b||(b=this.rd);f=(this.A&8160)>>5;g=(this.A&
|
||||
16)>>4;k=this.A&15;l=65536-this.I&65535;m=(this.f&48)<<12|this.G;n=this.f&2048?0:2;I(this)&&H(this,this.type+": "+c+"("+f+":"+g+":"+k+") "+p(m)+"-"+p(m+(l-1<<1)),!0,!0);if(f>=e.da){this.v|=32832;this.f|=49152;break}if(k>=e.ja){this.v|=32800;this.f|=49152;break}a=b.call(this,e,f,g,k,l,m,n,3<=r,this.pd.bind(this));break;case 6:I(this)&&H(this,this.type+": DRESET("+d+")");break;default:I(this)&&H(this,this.type+": UNSUPPORTED("+r+")")}this.P=e.status|(e.sa?128:0)|d<<13|this.A&15;this.v&32768&&I(this)&&
|
||||
H(this,this.type+": ERROR: "+p(this.v)+")");a&&(this.f&=-2,this.f|=128,this.f&64&&Nc(this.b,this.Tb))}};h.Ae=function(){return this.I};h.Df=function(a){this.I=a};h.ue=function(){return this.G};h.xf=function(a){this.G=a};h.we=function(){return this.A};h.zf=function(a){this.A=a};h.xe=function(){return this.N};h.Af=function(a){this.N=a};
|
||||
var ai={},Wh=(ai[65280]=[null,null,R.prototype.ye,R.prototype.Bf,"RKDS"],ai[65282]=[null,null,R.prototype.ze,R.prototype.Cf,"RKER"],ai[65284]=[null,null,R.prototype.ve,R.prototype.yf,"RKCS"],ai[65286]=[null,null,R.prototype.Ae,R.prototype.Df,"RKWC"],ai[65288]=[null,null,R.prototype.ue,R.prototype.xf,"RKBA"],ai[65290]=[null,null,R.prototype.we,R.prototype.zf,"RKDA"],ai[65294]=[null,null,R.prototype.xe,R.prototype.Af,"RKDB"],ai);
|
||||
function Q(a){z.call(this,"RL11",a,Q,131072);this.L=bi(this,a.autoMount);this.I=0;this.g=Array(4);this.N=!Pa("Mobi")&&window&&"FileReader"in window}E(Q);function bi(a,b){if(b&&"string"==typeof b)try{b=eval("("+b+")")}catch(c){x(a.type+" auto-mount error: "+c.message+" ("+b+")"),b=null}return b||{}}h=Q.prototype;
|
||||
h.xa=function(a,b,c){var d=this;switch(b){case "listDisks":return this.D[b]=c,c.onchange=function(){var a=d.D.descDisk,b=c.options&&c.options[c.selectedIndex];if(a&&b){var g={};if(b=b.getAttribute("data-value"))try{g=eval("("+b+")")}catch(k){x("RL11 option error: "+k.message)}b=g.desc;void 0===b&&(b="");g=g.href;void 0!==g&&(b='<a href="'+g+'" target="_blank">'+b+"</a>");a.innerHTML=b}},!0;case "descDisk":case "listDrives":return this.D[b]=c,c.onchange=function(){var a=ma(c.value,10);null!=a&&ci(d,
|
||||
a)},!0;case "loadDisk":return this.D[b]=c,c.onclick=function(){var a=d.D.listDisks;a&&a.options&&di(d,a.options[a.selectedIndex].text,a.value)},!0;case "bootDisk":return this.D[b]=c,c.onclick=function(){var a,b=d.D.listDrives,b=b&&ma(b.value,10);null==b||0>b||b>=d.g.length||!(a=d.g[b])?d.M("Unable to boot the selected drive"):a.sa?(Qd(d.b,0,!0),(a=d.Lc(a,0,0,0,512,0))&&d.M("Unable to read the boot sector ("+a+")")):d.M("Load a disk into the drive first")},!0;case "saveDisk":if(!this.N){c.parentNode.removeChild(c);
|
||||
break}this.D[b]=c;c.onclick=function(){var a=d.D.listDrives;a&&a.options&&d.g&&((a=d.g[ma(a.value,10)||0])?(a=a.sa)?(a=Qa(Qh(a),a.Cc.replace(".json",".img")),x(a)):d.M("No disk loaded in drive."):d.M("No disk drive selected."))};return!0;case "mountDisk":if(this.N)return this.D[b]=c,c.addEventListener("change",function(){var a=c.children[0];a.children[1].disabled=!a.children[0].files.length}),c.onsubmit=function(a){if(a=a.currentTarget[1].files[0]){var b=a.name;di(d,w(b,!0),b,a)}return!1},!0;c.parentNode.removeChild(c)}return!1};
|
||||
h.Ia=function(a,b,c,d){this.B=a;this.w=b;this.b=c;this.i=d;if(a=bi(this,Bd(this.B,"autoMount")))for(var e in a)e.substr(0,2)==this.type.substr(0,2)&&(this.L[e]=a[e]);ei(this);this.Tb=Pc(this.b,112,5,131072);Mb(b,this,fi);Ob(b,this.reset.bind(this));gi(this,"None","",!0);this.N&&gi(this,"Local Disk","?");gi(this,"Remote Disk","??");hi(this)||K(this)};
|
||||
h.La=function(a,b){if(!b){if(!a||!this.restore){if(this.reset(),this.B.yc){for(a=0;a<this.g.length;a++)ii(this,a,!0);hi(this,!0)}}else if(!this.restore(a))return!1;if(a=this.D.listDrives){for(;a.firstChild;)a.removeChild(a.firstChild);a.value="";for(b=0;4>b;b++){var c=document.createElement("option");c.value=b;c.text="RL"+b;a.appendChild(c)}a.value="0";ci(this,0)}}return!0};h.Ka=function(a){return a?this.save():!0};h.reset=function(){ei(this)};h.save=function(){return(new T(this)).data()};
|
||||
h.restore=function(a){return ei(this,a[0])};function hi(a,b){b||(a.I=0);for(var c in a.L){var d=a.L[c],e=d.path||"",f;if(!(f=d.name))a:{if((f=a.D.listDisks)&&f.options)for(var g=0;g<f.options.length;g++){var k=f.options[g];if(k.value==e){f=k.text;break a}}f=w(e,!0)}if(e&&f&&(g=-1,c&&(g=c.charCodeAt(c.length-1)-48,0>g||9<g)&&(g=-1),0<=g&&g<a.g.length)){!ji(a,g,f,e,!0)&&b&&K(a,!1);continue}a.M("Incorrect auto-mount settings for drive "+c+" ("+JSON.stringify(d)+")")}return!!a.I}
|
||||
function di(a,b,c,d){var e=a.D.listDrives,e=e&&ma(e.value,10);if(void 0===e||0>e||e>=a.g.length)a.M("Unable to load the selected drive");else if(c)if("?"==c)a.M('Use "Choose File" and "Mount" to select and load a local disk.');else{if("??"==c){c=window.prompt("Enter the URL of a remote disk image.","")||"";if(!c)return;b=w(c);a.status("Attempting to load "+c+' as "'+b+'"')}ji(a,e,b,c,!1,d)}else ii(a,e)}
|
||||
function ji(a,b,c,d,e,f){var g=-1,k=a.g[b];k.Oa.toLowerCase()!=d.toLowerCase()&&(g++,ii(a,b,!0),k.Db?a.M("RL11 busy"):(k.Db=!0,e&&(k.Cb=!0,a.I++,I(a)&&H(a,"auto-loading disk: "+c)),k.lb=!!f,Lh(new Hh(a,k,"preload"),c,d,f,a.td)&&g++));return g}
|
||||
h.td=function(a,b,c,d,e){a.Db=!1;b&&(b.da>a.da||b.la>a.la)&&(this.M('Disk "'+c+'" too large for drive '+("RL"+a.Fb)),b=null);b?(a.sa=b,a.Xa=c,a.Oa=d,this.M('Loaded disk "'+c+'" in drive '+("RL"+a.Fb),a.Cb||e),this.B&&this.B.wb()):a.lb=!1;a.Cb&&(a.Cb=!1,--this.I||K(this));ci(this,a.Fb)};
|
||||
function gi(a,b,c,d){if((a=a.D.listDisks)&&a.options){for(var e=0;e<a.options.length;e++)if(a.options[e].value==c)return;e=document.createElement("option");e.text=b;e.value=c;d&&a.childNodes[0]?a.insertBefore(e,a.childNodes[0]):a.appendChild(e)}}
|
||||
function ci(a,b){if(0<=b&&b<a.g.length){var c=a.g[b],d=a.D.listDisks;a=a.D.listDrives;if(d&&a&&d.options&&a.options&&(a=ma(a.value,10),c=c.lb?"?":c.Oa,!isNaN(a)&&a==b)){for(b=0;b<d.options.length;b++)if(d.options[b].value==c){d.selectedIndex!=b&&(d.selectedIndex=b);break}b==d.options.length&&(d.selectedIndex=0)}}}function ii(a,b,c){var d=a.g[b];if(d.sa||!1===c)d.Xa="",d.Oa="",d.sa=null,d.lb=!1,c||(a.M("Drive RL"+b+" unloaded",c),ci(a,b))}
|
||||
function ei(a,b){var c=0;b||(b=[]);a.f=b[c++]||129;a.K=b[c++]||0;a.v=b[c++]||0;a.A=b[c++]||0;a.G=b[c++]||0;a.F=b[c]||0;for(b=0;b<a.g.length;b++){var d=a.g[b];void 0===d&&(d=a.g[b]={});c=a;d.Fb=b;d.name=c.qb;d.Db=d.lb=!1;d.da=512;d.la=2;d.ja=40;d.Aa=256;d.hc=!0;d.Ad=0;d.yd=0;d.vc=1;d.Uc=d.ja;d.zc=d.Aa;d.Nd=0;d.Ye=null;d.sa||(d.Oa="");d.status=29}return!0}
|
||||
h.sd=function(a,b,c,d,e,f){this.K=f&65535;this.f=this.f&-49|f>>12&48;this.F=f>>16&63;this.A=this.v=b<<7|(c?64:0)|d&63;this.G=65536-e&65535;a&&(this.f=this.f|a|32768);return!0};
|
||||
h.Lc=function(a,b,c,d,e,f,g){var k=0;a=a.sa;var l=null,m;a||(k=5120,e=0);for(;e--;){if(!l){l=a.seek(b,c,d+1);if(!l){k=5120;break}m=0}var n,r;if(0>(n=a.read(l,m++))||0>(r=a.read(l,m++))){k=5120;break}this.w.Mb(this.b.fb(f),n|r<<8);if(Lc(this.w)){k=8192;break}f+=2;if(m>=a.Aa&&(l=null,++d>=a.ja&&(d=0,++c>=a.la&&(c=0,++b>=a.da)))){k=5120;break}}return g?g(k,b,c,d,e,f):k};
|
||||
h.ud=function(a,b,c,d,e,f,g){var k=0;a=a.sa;var l=null,m;a||(k=5120,e=0);for(;e--;){var n=this.w.Eb(this.b.fb(f));if(Lc(this.w)){k=8192;break}f+=2;if(!l){l=a.seek(b,c,d+1,!0);if(!l){k=5120;break}m=0}if(!a.write(l,m++,n&255)||!a.write(l,m++,n>>8)){k=5120;break}if(m>=a.Aa&&(l=null,++d>=a.ja&&(d=0,++c>=a.la&&(c=0,++b>=a.da)))){k=5120;break}}return g?g(k,b,c,d,e,f):k};h.De=function(){return this.f&65535};
|
||||
h.Gf=function(a){this.f=this.f&-1023|a&1022;this.F=this.F&60|(a&48)>>4;if(!(this.f&128)){a=!0;var b,c="",d=this.g[(this.f&768)>>8],e=d.sa,f,g,k;this.f&=-2;switch(this.f&14){case 4:this.G&8&&(this.f&=63);this.G=d.status|this.A&64|(e&&512==e.da?128:0);break;case 6:1==(this.v&3)&&(b=this.v&65408,c=(this.v&16)<<2,this.A=this.v&4?this.A+b:this.A-b,this.v=this.A=this.A&65408|c);break;case 8:this.G=this.A;break;case 12:c="READ",b=this.Lc;case 10:c||(c="WRITE"),b||(b=this.ud),f=this.v>>7,g=this.v&64?1:0,
|
||||
k=this.v&63,!e||f>=e.da||k>=e.ja?this.f|=37888:(a=65536-this.G&65535,e=(this.F&63)<<16|this.K,I(this)&&H(this,this.type+": "+c+"("+f+":"+g+":"+k+") "+p(e)+"-"+p(e+(a-1<<1)),!0,!0),a=b.call(this,d,f,g,k,a,e,this.sd.bind(this)))}a&&(this.f|=129,this.f&64&&Nc(this.b,this.Tb))}};h.Be=function(){return this.K};h.Ef=function(a){this.K=a&65534};h.Ee=function(){return this.v};h.Hf=function(a){this.v=a};h.Fe=function(){return this.G};h.If=function(a){this.G=a};h.Ce=function(){return this.F};
|
||||
h.Ff=function(a){this.F=a&63;this.f=this.f&-49|(this.F&3)<<4};var ki={},fi=(ki[63744]=[null,null,Q.prototype.De,Q.prototype.Gf,"RLCS"],ki[63746]=[null,null,Q.prototype.Be,Q.prototype.Ef,"RLBA"],ki[63748]=[null,null,Q.prototype.Ee,Q.prototype.Hf,"RLDA"],ki[63750]=[null,null,Q.prototype.Fe,Q.prototype.If,"RLMP"],ki[63752]=[null,null,Q.prototype.Ce,Q.prototype.Ff,"RLBE"],ki);function li(a){z.call(this,"Debugger",a,li);this.na=a.base||16;this.Ga=!1;this.I=0;this.T=!1;this.A=-1;this.g=[];this.ba={}}E(li);
|
||||
var mi={"||":0,"&&":1,"|":2,"^":3,"&":4,"!=":5,"==":5,">=":6,">":6,"<=":6,"<":6,">>>":7,">>":7,"<<":7,"-":8,"+":8,"%":9,"/":9,"*":9};li.prototype.Zc=function(){return-1};li.prototype.$c=function(){};li.prototype.ad=function(){};
|
||||
function ni(a,b,c,d){if(c)if(b){0>a.A&&a.g.length&&(a.A=0);if(0>a.A||b!=a.g[a.A])a.g.splice(0,0,b),a.A=0;a.A--}else a.T?b="end":b=a.g[a.A+1];a=[];if(b){b=b.replace(/""/g,"'");c=0;var e=null;d=d||";";for(var f=0;f<=b.length;f++){var g=b.charAt(f);if('"'==g||"'"==g)e?g==e&&(e=null):e=g;else if(g==d&&!e||!g)a.push(ua(b.substring(c,f))),c=f+1}}return a}
|
||||
function oi(a,b,c){for(c=c||-1;c--&&b.length;){var d=b.pop();if(2>a.length)return!1;var e=a.pop(),f=a.pop();switch(d){case "*":d=f*e;break;case "/":if(!e)return!1;d=f/e;break;case "%":if(!e)return!1;d=f%e;break;case "+":d=f+e;break;case "-":d=f-e;break;case "<<":d=f<<e;break;case ">>":d=f>>e;break;case ">>>":d=f>>>e;break;case "<":d=f<e?1:0;break;case "<=":d=f<=e?1:0;break;case ">":d=f>e?1:0;break;case ">=":d=f>=e?1:0;break;case "==":d=f==e?1:0;break;case "!=":d=f!=e?1:0;break;case "&":d=f&e;break;
|
||||
case "^":d=f^e;break;case "|":d=f|e;break;case "&&":d=f&&e?1:0;break;case "||":d=f||e?1:0;break;default:return!1}a.push(d|0)}return!0}
|
||||
function ri(a,b,c){var d;if(b){b=si(a,b);for(var e=0,f=!1,g=b,h=[],l=[],m=b.split(/(\|\||&&|\||^|&|!=|==|>=|>>>|>>|>|<=|<<|<|-|\+|%|\/|\*)/);e<m.length;){var n=m[e++],r=n.length,n=za(n);if(!n){f=!0;break}n=ti(a,n,null,!1===c);if(void 0===n){f=!0;c=!1;break}h.push(n);if(e==m.length)break;var n=m[e++],u=n.length;l.length&&oi[n]<oi[l[l.length-1]]&&qi(h,l,1);l.push(n);b=b.substr(r+u)}qi(h,l)&&1==h.length||(f=!0);f?c&&a.i("error parsing '"+g+"' at character "+(g.length-b.length)):(d=h.pop(),c&&ui(a,null,
|
||||
d))}return d}function si(a,b){for(var c,d=a.Ga?"(":"{",e=a.Ga?")":"}",f=new RegExp(a.Ga?"\\((.*?)\\)":"\\{(.*?)\\}");(c=b.match(f))&&!(0<=c[1].indexOf(d));){var g=ri(a,c[1]);b=b.replace(d+c[1]+e,null!=g?N(a,g):"undefined")}for(;(c=b.match(/\[(.*?)]/))&&!(0<=c[1].indexOf("["));)b=b.replace("["+c[1]+"]","unimplemented");for(a=b;b=a.match(/\$([a-z]+)/i);){c=null;switch(b[1].toLowerCase()){case "ops":c=0}if(null==c)break;a=a.replace(b[0],c.toString())}return a}
|
||||
function ti(a,b,c,d){var e;null!=b?(e=a.Qc(b),0<=e?e=a.Rc(e):(e=a.ca[b],null==e&&(e=a.Sc(b),null==e&&(e=na(b,a.ma)))),null!=e||d||a.i("invalid "+(c?c:"value")+": "+b)):d||a.i("missing "+(c||"value"));return e}function ui(a,b,c){var d,e=!1;if(void 0!==c){e=!0;d=c;var f=0,g="";if(!f||4<f)f=4;for(var h=0;h<f;h++)g&&(g=","+g),g=oa(d&255,8)+g,d>>=8;d=q(c,0,!0)+" "+c+". "+p(c,0,!0)+" "+("0b"+g);32<=c&&127>c&&(d+=" '"+String.fromCharCode(c)+"'")}a.i((null!=b?b+": ":"")+d);return e}
|
||||
function vi(a,b){if(b)return ui(a,b,a.ca[b]);var c=0;for(b in a.ca)ui(a,b,a.ca[b]),c++;return 0<c}function N(a,b,c,d){switch(a.ma){case 8:a=p(b,3*c-(2<c?1:0));break;case 10:a=b.toString();break;default:a=q(b,2*c)}d?d=a.replace(/^0+([0-9A-F]+)$/i,"$1"):d=a;return d}
|
||||
function wi(a){ni.call(this,a);this.Za=!1;this.Ga=!0;this.L=Y(0);this.Ya=Y(0);this.S=Y(0);this.I=[];this.f=this.N=this.F=[];xi(this);this.wa=0;yi(this);this.Qa={};zi(this,a.messages);this.Ta=a.commands;var b=this;window?void 0===window.pdp11&&(window.pdp11=function(a){return Gd(b,a)}):void 0===global.pdp11&&(global.pdp11=function(a){return Gd(b,a)})}E(wi,ni);
|
||||
var Ai={"?":"help/print","a [#]":"assemble","b [#]":"breakpoint",c:"clear output","d [#]":"dump memory","e [#]":"edit memory","g [#]":"go [to #]",h:"halt","if":"eval expression","int [#]":"request interrupt",k:"stack trace",ln:"list nearest symbol(s)",m:"messages",p:"step over",print:"print expression",r:"dump/set registers",reset:"reset machine",s:"set options","t [#]":"trace","u [#]":"unassemble","var":"assign variable",ver:"print version"},Bi=".WORD ADC ADCB ADD ASL ASLB ASR ASRB BCC BCS BEQ BGE BGT BHI BIC BICB BIS BISB BIT BITB BLE BLOS BLT BMI BNE BPL BPT BR BVC BVS CCC CLC CLCN CLCV CLCVN CLCVZ CLCZ CLCZN CLN CLR CLRB CLV CLVN CLVZ CLVZN CLZ CLZN CMP CMPB COM COMB DEC DECB INC INCB HALT JMP JSR MARK MFPD MFPI MFPS MOV MOVB MTPD MTPI MTPS NEG NEGB NOP RESET ROL ROLB ROR RORB RTI RTS SBC SBCB SCC SEC SECN SECV SECVN SECVZ SECZ SECZN SEN SEV SEVN SEVZ SEVZN SEZ SEZN SUB SWAB SXT TST TSTB WAIT MUL DIV ASH ASHC XOR SOB EMT TRAP SPL IOT RTT MFPT".split(" "),
|
||||
Ci={SP:6,PC:7,PS:20,IR:21,ER:22,SL:23,MMR0:24,MMR1:25,MMR2:26,MMR3:27,AR:28,DR:29,SR:30},Di="KI KD SI SD ?? ?? UI UD".split(" "),Ei={61440:{4096:[62,4032,63],8192:[47,4032,63],12288:[18,4032,63],16384:[14,4032,63],20480:[16,4032,63],24576:[3,4032,63],36864:[63,4032,63],40960:[48,4032,63],45056:[19,4032,63],49152:[15,4032,63],53248:[17,4032,63],57344:[94,4032,63]},65024:{2048:[57,448,63],28672:[100,63,448],29184:[101,63,448],29696:[102,63,448],30208:[103,63,448],30720:[104,448,63],32256:[105,448,8192]},
|
||||
function pi(a,b,c){var d;if(b){b=qi(a,b);for(var e=0,f=!1,g=b,k=[],l=[],m=b.split(/(\|\||&&|\||^|&|!=|==|>=|>>>|>>|>|<=|<<|<|-|\+|%|\/|\*)/);e<m.length;){var n=m[e++],r=n.length,n=ua(n);if(!n){f=!0;break}n=ri(a,n,null,!1===c);if(void 0===n){f=!0;c=!1;break}k.push(n);if(e==m.length)break;var n=m[e++],u=n.length;l.length&&mi[n]<mi[l[l.length-1]]&&oi(k,l,1);l.push(n);b=b.substr(r+u)}oi(k,l)&&1==k.length||(f=!0);f?c&&a.j("error parsing '"+g+"' at character "+(g.length-b.length)):(d=k.pop(),c&&si(a,null,
|
||||
d))}return d}function qi(a,b){for(var c,d=a.Ga?"(":"{",e=a.Ga?")":"}",f=new RegExp(a.Ga?"\\((.*?)\\)":"\\{(.*?)\\}");(c=b.match(f))&&!(0<=c[1].indexOf(d));){var g=pi(a,c[1]);b=b.replace(d+c[1]+e,null!=g?M(a,g):"undefined")}for(;(c=b.match(/\[(.*?)]/))&&!(0<=c[1].indexOf("["));)b=b.replace("["+c[1]+"]","unimplemented");for(a=b;b=a.match(/\$([a-z]+)/i);){c=null;switch(b[1].toLowerCase()){case "ops":c=0}if(null==c)break;a=a.replace(b[0],c.toString())}return a}
|
||||
function ri(a,b,c,d){var e;null!=b?(e=a.Zc(b),0<=e?e=a.$c(e):(e=a.ba[b],null==e&&(e=a.ad(b),null==e&&(e=ma(b,a.na)))),null!=e||d||a.j("invalid "+(c?c:"value")+": "+b)):d||a.j("missing "+(c||"value"));return e}function si(a,b,c){var d,e=!1;if(void 0!==c){e=!0;d=c;var f=0,g="";if(!f||4<f)f=4;for(var k=0;k<f;k++)g&&(g=","+g),g=oa(d&255,8)+g,d>>=8;d=q(c,0,!0)+" "+c+". "+p(c,0,!0)+" "+("0b"+g);32<=c&&127>c&&(d+=" '"+String.fromCharCode(c)+"'")}a.j((null!=b?b+": ":"")+d);return e}
|
||||
function ti(a,b){if(b)return si(a,b,a.ba[b]);var c=0;for(b in a.ba)si(a,b,a.ba[b]),c++;return 0<c}function M(a,b,c,d){switch(a.na){case 8:a=p(b,3*c-(2<c?1:0));break;case 10:a=b.toString();break;default:a=q(b,2*c)}d?d=a.replace(/^0+([0-9A-F]+)$/i,"$1"):d=a;return d}
|
||||
function ui(a){li.call(this,a);this.Za=!1;this.Ga=!0;this.L=X(0);this.Ya=X(0);this.S=X(0);this.G=[];this.f=this.P=this.K=[];vi(this);this.wa=0;wi(this);this.Pa={};xi(this,a.messages);this.Ta=a.commands;var b=this;window?void 0===window.pdp11&&(window.pdp11=function(a){return Fd(b,a)}):void 0===global.pdp11&&(global.pdp11=function(a){return Fd(b,a)})}E(ui,li);
|
||||
var yi={"?":"help/print","a [#]":"assemble","b [#]":"breakpoint",c:"clear output","d [#]":"dump memory","e [#]":"edit memory","g [#]":"go [to #]",h:"halt","if":"eval expression","int [#]":"request interrupt",k:"stack trace",ln:"list nearest symbol(s)",m:"messages",p:"step over",print:"print expression",r:"dump/set registers",reset:"reset machine",s:"set options","t [#]":"trace","u [#]":"unassemble","var":"assign variable",ver:"print version"},zi=".WORD ADC ADCB ADD ASL ASLB ASR ASRB BCC BCS BEQ BGE BGT BHI BIC BICB BIS BISB BIT BITB BLE BLOS BLT BMI BNE BPL BPT BR BVC BVS CCC CLC CLCN CLCV CLCVN CLCVZ CLCZ CLCZN CLN CLR CLRB CLV CLVN CLVZ CLVZN CLZ CLZN CMP CMPB COM COMB DEC DECB INC INCB HALT JMP JSR MARK MFPD MFPI MFPS MOV MOVB MTPD MTPI MTPS NEG NEGB NOP RESET ROL ROLB ROR RORB RTI RTS SBC SBCB SCC SEC SECN SECV SECVN SECVZ SECZ SECZN SEN SEV SEVN SEVZ SEVZN SEZ SEZN SUB SWAB SXT TST TSTB WAIT MUL DIV ASH ASHC XOR SOB EMT TRAP SPL IOT RTT MFPT".split(" "),
|
||||
Ai={SP:6,PC:7,PS:20,IR:21,ER:22,SL:23,MMR0:24,MMR1:25,MMR2:26,MMR3:27,AR:28,DR:29,SR:30},Bi="KI KD SI SD ?? ?? UI UD".split(" "),Ci={61440:{4096:[62,4032,63],8192:[47,4032,63],12288:[18,4032,63],16384:[14,4032,63],20480:[16,4032,63],24576:[3,4032,63],36864:[63,4032,63],40960:[48,4032,63],45056:[19,4032,63],49152:[15,4032,63],53248:[17,4032,63],57344:[94,4032,63]},65024:{2048:[57,448,63],28672:[100,63,448],29184:[101,63,448],29696:[102,63,448],30208:[103,63,448],30720:[104,448,63],32256:[105,448,8192]},
|
||||
65280:{256:[27,4096],512:[24,4096],768:[10,4096],1024:[11,4096],1280:[22,4096],1536:[12,4096],1792:[20,4096],32768:[25,4096],33024:[23,4096],33280:[13,4096],33536:[21,4096],33792:[28,4096],34048:[29,4096],34304:[8,4096],34560:[9,4096],34816:[106,32768],35072:[107,32768]},65472:{64:[56,63],192:[95,63],2560:[39,63],2624:[49,63],2688:[53,63],2752:[51,63],2816:[67,63],2880:[1,63],2944:[77,63],3008:[97,63],3072:[73,63],3136:[71,63],3200:[6,63],3264:[4,63],3328:[58,24576],3392:[60,63],3456:[65,63],3520:[96,
|
||||
63],35328:[40,63],35392:[50,63],35456:[54,63],35520:[52,63],35584:[68,63],35648:[2,63],35712:[78,63],35776:[98,63],35840:[74,63],35904:[72,63],35968:[7,63],36032:[5,63],36096:[66,63],36160:[59,63],36224:[64,63],36288:[61,63]},65528:{128:[76,7],152:[108,12288]},65535:{0:[55],1:[99],2:[75],3:[26],4:[109],5:[70],6:[110],7:[111],160:[69],161:[31],162:[41],163:[33],164:[45],165:[36],166:[43],167:[35],168:[38],169:[32],170:[42],171:[34],172:[46],173:[37],174:[44],175:[30],176:[69],177:[80],178:[88],179:[82],
|
||||
180:[92],181:[85],182:[90],183:[84],184:[87],185:[81],186:[89],187:[83],188:[93],189:[86],190:[91],191:[79]}},Fi=[0],Gi=[58,60,65,96,108,110,100,101,102,103,104,105,59,64];k=wi.prototype;
|
||||
k.Ia=function(a,b,c,d){this.w=b;this.B=a;this.b=c;this.v=a.v;(a=Cd(a,"messages"))&&zi(this,a);this.vb=Ei;this.Ib=1145>this.b.bb?Gi:[];$c(this,16,function(a){a:{var b=d.w.ea,c=a[0],e=a=0,l=b.length;if(c){a=d.ba(Hi(d,c));if(-1===a){d.i("invalid address: "+c);break a}e=a>>>d.w.ra;l=1}d.i("blockid physical blockaddr used size type");d.i("-------- --------- ---------- ------ ------ ----");for(var c=-1,m=0;l--;){var n=b[e];n.type==c?m++||d.i("..."):(c=n.type,m=Fc[c],n&&d.i(q(n.id,8)+" %"+
|
||||
q(e<<d.w.ra,8)+" %%"+q(n.G,8)+" "+v(n.Ub)+" "+v(n.size)+" "+m),c!=od&&(c=-1),m=0);a+=d.w.Ka;e++}}});L(this)};
|
||||
k.za=function(a,b,c){var d=this;switch(b){case "debugInput":return this.va=this.D[b]=c,c.onkeydown=function(a){var b;if(13==a.keyCode)b=c.value,c.value="",Gd(d,b,!0);else if(27==a.keyCode)c.value=b="";else if(38==a.keyCode?(b=null,d.A<d.g.length-1&&(b=d.g[++d.A])):40==a.keyCode&&(0<d.A?b=d.g[--d.A]:(b="",d.A=-1)),null!=b){var e=b.length;c.value=b;c.setSelectionRange(e,e)}null!=b&&a.preventDefault&&a.preventDefault()},!0;case "debugEnter":return this.D[b]=c,Ta(c,function(){if(d.va){var a=d.va.value;
|
||||
d.va.value="";Gd(d,a,!0);return!0}return!1}),!0;case "step":return this.D[b]=c,Ta(c,function(a){var b=!1;yb(d,!0)||(sb(d,!0),b=d.sb(a?1:0,null),sb(d,!1));return b}),!0}return!1};k.rb=function(a){if(this.va){var b=0,c=0;!a&&window&&(b=window.scrollX,c=window.scrollY);this.va.focus();!a&&window&&window.scrollTo(b,c)}};k.ba=function(a){a=a&&a.G;null==a&&(a=-1);return a};k.Ja=function(a){return 3932160<=a?this.b.Ja(a):a};
|
||||
k.Ab=function(a,b){var c=255,d=this.ba(a,!1,1);-1!==d&&(a.cc||65535<d?(c=this.w,d=this.Ja(d),c.B=!1,c.sa++,d=Gc(c,d).I(d&c.w,d),c.sa--):(c=this.b,c.K++,d=c.w.Ab(xe(c,d,3)),c.K--),c=d,b&&Ii(a,b));return c};k.xa=function(a,b){var c=65535,d=this.ba(a,!1,2);-1!==d&&(c=a.cc||65535<d?ac(this.w,this.Ja(d)):nc(this.b,d),b&&Ii(a,b));return c};k.Tb=function(a,b,c){var d=this.ba(a,!0,1);if(-1!==d){if(a.cc||65535<d)Hc(this.w,this.Ja(d),b);else{var e=this.b;e.K++;e.w.Tb(xe(e,d,5),b);e.K--}c&&Ii(a,c);this.B.Aa(-1)}};
|
||||
k.Gb=function(a,b,c){var d=this.ba(a,!0,2);if(-1!==d){if(a.cc||65535<d)$b(this.w,this.Ja(d),b);else{var e=this.b;e.K++;e.Hb(d,b);e.K--}c&&Ii(a,c);this.B.Aa(-1)}};function Y(a,b){return{G:a,cc:b,$a:!1}}k.vc=function(a,b){a.G=b;a.$a=!1;return a};function Ji(a){return[a.G,a.$a]}function Ki(a){return{G:a[0],$a:a[1]}}
|
||||
function Hi(a,b,c){var d,e=(c?a.L:a.Ya).G;c=!1;if(void 0!==b){b=si(a,b);"%"==b.charAt(0)&&(c=!0,b=b.substr(1));d=b;var f;if(d.match(/^[a-z_][a-z0-9_]*$/i))for(d=d.toUpperCase(),e=0;e<a.I.length;e++){var g=a.I[e].ja[d];if(void 0!==g){d=g.o;void 0!==d&&(f=Y(d));break}}if(d=f)return d;e=ri(a,b,void 0)}null!=e&&(d=Y(e,c));return d}function Li(a,b,c){c&&(c=c.match(/(['"])(.*?)\1/))&&(b.jd=pi(a,b.Vc=c[2]))}function Ii(a,b){null!=a.G&&(a.G+=b||1)}
|
||||
function zi(a,b){a.j=a;a.pa=a.qd=536870912;a.na=null;a.Y=[];b=pi(a,b.replace("keys","key").replace("kbd","keyboard"),!1,"|");if(b.length)for(var c in Fb){var d;a:if(d=void 0,Array.prototype.indexOf)d=b.indexOf(c,d);else{d=d||0;0>d&&(d+=b.length);0>d&&(d=0);for(var e=b.length;d<e;d++)if(d in b&&b[d]===c)break a;d=-1}0<=d&&(a.pa|=Fb[c],a.i(c+" messages enabled"))}}function $c(a,b,c){for(var d in Fb)if(b==Fb[d]){a.Qa[d]=c;break}}
|
||||
k.Qc=function(a){a=a.toUpperCase();var b=Ci[a];null==b&&(b=-1,"R"==a.charAt(0)&&(b=+a.charAt(1),0>b||7<b))&&(b=-1);return b};function Mi(a){return 6>a?"R"+a:6==a?"SP":"PC"}
|
||||
k.Rc=function(a){var b;if(0<=a)if(8>a)b=this.b.u[a];else if(16>a)b=this.b.cb[a-8];else if(20>a)b=this.b.Oa[a-16];else{var c=this.b,d=this.v;switch(a){case 20:b=hd(this.b);break;case 21:b=c.Eb;break;case 22:b=c.oa;break;case 23:b=c.jb;break;case 24:b=bd(c);break;case 25:b=dd(c);break;case 26:b=ed(c);break;case 27:b=c.Na;break;case 28:d&&(b=d.Da);break;case 29:d&&(b=d.Db);break;case 30:d&&rc(d)&&(b=d.kb)}}return b};
|
||||
k.Sc=function(a){var b;a:{b=this.w;a=a.toUpperCase();for(var c in b.Ua){var d=+c;if(b.Ua[d][4]==a){b=b.Ha+d;break a}}b=null}return b};k.message=function(a,b){b&&(a+=" @"+N(this,Y(this.b.ta&65535).G));if(!this.na||a!=this.na)if(this.na=a,this.pa&1073741824)this.Y.push(a);else{var c;if(this.pa&-2147483648&&this.b&&(c=this.b.C.U)||yb(this,!0))this.aa(),c&&(a+=" (cpu halted)");this.i(a);this.b&&(a=this.b,Kd(a),a.Qa=0,a.Aa())}};
|
||||
function yi(a){var b;if(!Je(a))a.H&&a.H.length&&a.i("instruction history buffer freed"),a.da=0,a.H=[];else if(!a.H||!a.H.length){a.H=Array(1E3);for(b=0;b<a.H.length;b++)a.H[b]=Y();a.da=0;a.i("instruction history buffer allocated")}}k.lb=function(a,b){if(!Ni(this,b))return!1;this.b.lb(a);return!0};
|
||||
k.sb=function(a,b,c){if(!Ni(this))return!1;null===b&&(b=!this.wb||"tr"==this.wb);this.K=0;a||Je(this)&&Ke(this,this.b.u[7],0);try{a=Ld(this.b,a);var d=this.b.sb(a);0<d&&(Vb(this.b,d),this.K+=d,Wb(this.b,d,!0),Xb(this.b,d),this.Ba++)}catch(e){"number"!=typeof e&&(this.K=0,Bb(this.b,e.stack||e.message))}!1!==c&&(this.v&&this.v.stop(),this.B.Aa(-1));Fd(this,b||!1);return 0<this.K};k.aa=function(a){this.b&&this.b.aa(a)};
|
||||
function Fd(a,b){if(a.Za){void 0===b&&(b=!0);var c;c=a.b;if(c=c.J&128?c.ud|c.rd<<8:0){var d=c>>8;a.i("trapped to "+N(a,c&255,1)+" ("+(0>d?Db[-d]:N(a,d))+")")}a.L=Y(a.b.u[7]);b&&1!=a.P?Oi(a):Pi(a)}}function Ni(a,b){var c;(c=!a.b||!zb(a.b))||(c=a.b,c.C.la?c=!0:(c.i(c.toString()+" not powered"),c=!1),c=!c);return c||a.b.C.U?(b||a.i("cpu busy or unavailable, command ignored"),!1):!Ab(a.b)}k.Ma=function(a,b){return!b&&(this.reset(!0),a&&this.restore&&!this.restore(a))?!1:!0};
|
||||
k.La=function(a,b){b&&this.i(a?"suspending":"shutting down");return a?this.save():!0};k.reset=function(a){yi(this);this.Ba=0;this.na=null;this.K=0;this.L=Y(this.b.u[7]);this.C.U=!1;Qi(this);a||Fd(this)};k.save=function(){var a=new U(this);a.set(0,Ji(this.L));a.set(1,Ji(this.S));a.set(2,[this.g,this.T,this.pa]);a.set(3,this.I);return a.data()};
|
||||
k.restore=function(a){var b=0;void 0!==a[2]&&(this.L=Ki(a[b++]),this.S=Ki(a[b++]),this.g=a[b][0],"string"==typeof this.g&&(this.g=[this.g]),this.T=a[b][1],this.pa|=a[b][2]);a[3]&&(this.I=a[3]);return!0};k.start=function(a,b){this.P||this.i("running");this.C.U=!0;this.Jb=a;this.Xb=b};
|
||||
k.stop=function(a,b){if(this.C.U){this.C.U=!1;this.K=b-this.Xb;if(!this.P){b="stopped";if(this.K){a-=this.Jb;var c=0<a?Math.round(1E3*this.K/a):0;b+=" (";Je(this)&&(b+=this.Ba+" instructions, ",this.Ba=0);b+=this.K+" cycles, "+a+" ms, "+c+" hz)"}else K(this,-2147483648)&&(b+=" (use the 't' command to execute blocked faults)");this.i(b)}Fd(this,!0);this.rb();Qi(this,this.b.u[7]);this.na=null}};function Je(a){return 1<a.f.length||!!a.wa}
|
||||
function Ke(a,b,c){var d=-1;c||(d=nc(a.b,b),0==d&&(b=Xd(a.b,2)));if(0<c&&(a.wa&&!--a.wa||xd(a,b,1,a.f)))return!0;0<=c&&a.H.length&&(a.Ba++,0>d&&(d=nc(a.b,b)),65535!=(d&65535)&&(a.vc(a.H[a.da],b),++a.da==a.H.length&&(a.da=0)));return!1}function Qf(a){var b=a.b;if(b.C.U)throw Sd(b,a.b.ta&65535),a.aa(),-1;return!1}
|
||||
function xi(a){var b,c;a.f=["bp"];if(a.N)for(b=1;b<a.N.length;b++){c=a.N[b];var d=a.w;c=a.ba(c);yd(d.ea[c>>>d.ra],!1)}a.N=["br"];if(a.F)for(b=1;b<a.F.length;b++)c=a.F[b],d=a.w,c=a.ba(c),yd(d.ea[c>>>d.ra],!0);a.F=["bw"];a.eb=0}k.xb=function(a,b,c){var d=!0;c||Ri(this,a,b,!1,!0);if(a!=this.f){var e=this.ba(b);if(-1===e)this.i("invalid address: "+N(this,b.G)),d=!1;else{var f=this.w;f.ea[e>>>f.ra].xb(e&f.w,a==this.F)}}d&&(a.push(b),c?b.$a=!0:(Si(this,a,a.length-1,"set"),yi(this)));return d};
|
||||
function Ri(a,b,c,d,e){var f=!1;c=a.ba(c);for(var g=1;g<b.length;g++){var h=b[g];if(c==a.ba(h)&&(!d||h.$a)){f=!0;h.$a||e||Si(a,b,g,"cleared");b.splice(g,1);b!=a.f&&(d=a.w,yd(d.ea[c>>>d.ra],b==a.F));h.$a||yi(a);break}}return f}function Ti(a,b){for(var c=1;c<b.length;c++)Si(a,b,c);return b.length-1}function Si(a,b,c,d){c=b[c];a.i(b[0]+" "+N(a,c.G)+(d?" "+d:c.Vc?' "'+c.Vc+'"':""))}
|
||||
function Qi(a,b){if(void 0!==b)xd(a,b,1,a.f,!0),a.P=0;else for(b=1;b<a.f.length;b++){var c=a.f[b];if(c.$a){if(!Ri(a,a.f,c,!0))break;b=0}}}
|
||||
function xd(a,b,c,d,e){var f=!1;if(!a.eb++)for(var g=1;!f&&g<d.length;g++){var h=d[g];if(!e||h.$a)for(var l=a.ba(h)&(d==a.f?65535:-1),m=0;m<c;m++)if(b+m==l){var n,f=!0;h.$a&&(Ri(a,d,h,!0),e=!0);if(n=h.jd){for(var f=!1,r=0;r<n.length;r++)if(!Ui(a,n[r],!0)){if(n[r].indexOf("if")){f=!0;break}for(var u=r+1;u<n.length&&n[u].indexOf("else");u++)r++;if(u==n.length){f=!0;break}}a.b.C.U||(f=!0)}if(f){e||Si(a,d,g,"hit");break}}}a.eb--;return f}
|
||||
function Vi(a,b,c,d){var e=Y(b.G),f=a.xa(b,2),g,h;for(h in a.vb)if(g=a.vb[h][f&h])break;g||(g=Fi);var l=g[0];0<=a.Ib.indexOf(l)&&(g=Fi,l=g[0]);var m=h="",n=Bi[l],r=g.length-1;l||r||(h=N(a,f));for(l=1;l<=r;l++){var u=g[l];if(void 0!==u){var t;t=a;var C=u,u=b,y="",A=C&61440;if(4096==A)u=u.G+((f&255)<<24>>23)&65535,y=N(t,u);else if(8192==A)u=u.G-((f&63)<<1)&65535,y=N(t,u);else if(12288==A)y=N(t,f&7,1);else if(24576==A)y=N(t,f&63,1);else if(32768==A)y=N(t,f&255,1);else if(A=f&C,C&4032&&(A>>=6,C>>=6),
|
||||
C&63){var C=null,D=A&7;switch(A&56){case 0:y=Mi(D);break;case 8:y="@"+Mi(D);C=Wi(t,t.b.u[D]);break;case 16:7>D?y="("+Mi(D)+")+":(A=t.xa(u,2),y="#"+N(t,A,0,!0));break;case 24:7>D?y="@("+Mi(D)+")+":(A=t.xa(u,2),y="@#"+N(t,A,0,!0),C=Wi(t,A));break;case 32:y="-("+Mi(D)+")";break;case 40:y="@-("+Mi(D)+")";break;case 48:A=t.xa(u,2);y=N(t,A,0,!0)+"("+Mi(D)+")";7==D&&(y=N(t,A=A+u.G&65535),C=Wi(t,A));break;case 56:A=t.xa(u,2),y="@"+N(t,A)+"("+Mi(D)+")",7==D&&(y="@"+N(t,A=A+u.G&65535),C=Wi(t,nc(t.b,A)))}C&&
|
||||
(y=[y,C])}t=y;if(!t||!t.length){h="INVALID";break}"string"!=typeof t&&(m=t[1],t=t[0]);0<h.length&&(h+=",");h+=t||"???"}}f="";g=N(a,e.G)+":";if(-1!==e.G&&-1!==b.G){do if(f+=" "+N(a,a.xa(e,2)),null==e.G)break;while(e.G!=b.G)}g+=ta(f,24);g+=ta(n,5);h&&(g+=" "+h);if(c||m)g=ta(g,60)+";"+(c||""),g=a.b.C.Lb?g+("cycles="+Hd(a.b).toString()+" cs="+q(a.b.Zb)):g+(null!=d?"="+d.toString():""),m&&(";"!=g.slice(-1)&&(g+=" "),g+=m);return g}
|
||||
function Wi(a,b){b=a.b.fc(b)[0];b>=a.b.Ha&&b<a.w.Ha&&(b=b-a.b.Ha+a.w.Ha);return a.w.fc(b)}function Xi(a,b){switch(b){case "N":a=Wd(a.b);break;case "Z":a=Vd(a.b);break;case "V":a=Ud(a.b);break;case "C":a=Td(a.b);break;default:a=0}return b.charAt(0)+(a?"1":"0")+" "}
|
||||
function Z(a,b){var c="",d=a.b;if(8>b)c=Mi(b),c+="="+N(a,d.u[b]);else if(13>b)c="A"+(b-8)+"="+N(a,d.cb[b-8]);else if(16<=b&&20>b)c="S"+(b-16)+"="+N(a,d.Oa[b-16]);else switch(b){case 20:c="PS="+N(a,hd(d));break;case 21:c="IR="+N(a,d.Eb);break;case 22:c="ER="+N(a,d.oa);break;case 23:c="SL="+N(a,d.jb);break;case 24:c="MMR0="+N(a,bd(d));break;case 25:c="MMR1="+N(a,dd(d));break;case 26:c="MMR2="+N(a,ed(d));break;case 27:c="MMR3="+N(a,d.Na);break;case 28:a.v&&(c="AR="+N(a,a.v.Da,3));break;case 29:a.v&&
|
||||
(c="DR="+N(a,a.v.Db));break;case 30:a.v&&rc(a.v)&&(c="SR="+N(a,a.v.kb,3))}c&&(c+=" ");return c}function Yi(a,b){var c,d="";for(c=0;6>c;c++)d+=Z(a,c);d=d+"\n"+(Z(a,6)+Z(a,7));d+=Z(a,20)+Z(a,21)+Z(a,23);d+=Xi(a,"T")+Xi(a,"N")+Xi(a,"Z")+Xi(a,"V")+Xi(a,"C");b&&(b=d,c=""+(Z(a,24)+Z(a,25)),c+=Z(a,26)+Z(a,27)+Z(a,22),c=c+"\n"+(Z(a,30)+Z(a,28)+Z(a,29)),d=b+("\n"+c));return d}k.Nc=function(a,b){return a[0]>b[0]?1:a[0]<b[0]?-1:0};
|
||||
function Qg(a,b,c,d,e){var f=[],g;for(g in e){var h=e[g];"number"==typeof h&&(e[g]=h={o:h});var l=h.o,m=h.a;if(void 0!==l){var n=f,l=[l>>>0,g],r=Ba(n,l,a.Nc);0>r&&n.splice(-(r+1),0,l)}m&&(h.a=m.replace(/''/g,'"'))}a.I.push({Pg:b,G:c,zd:d,ja:e,Lc:f})}function Zi(a,b,c){var d=[],e=a.ba(b)>>>0;for(b=0;b<a.I.length;b++){var f=a.I[b],g=f.G>>>0,h=f.zd;if(e>=g&&e<g+h){e=Ba(f.Lc,[e-g],a.Nc);0<=e?$i(a,b,e,d):c&&(e=~e,$i(a,b,e-1,d),$i(a,b,e,d));break}}return d}
|
||||
function $i(a,b,c,d){var e={},f=a.I[b].Lc,g=0,h=null;0<=c&&c<f.length&&(g=f[c][0],h=f[c][1]);h&&(e=a.I[b].ja[h],h="."==h.charAt(0)?null:e.l||h);d.push(h);d.push(g);d.push(e.a);d.push(e.c)}function aj(a,b){var c=b.match(/^\s*([A-Z_]?[A-Z0-9_]*)\s*(=?)\s*(.*)$/i);if(c){if(!c[1])return vi(a)||a.i("no variables"),!0;if(!c[2])return vi(a,c[1]);if(!c[3])return delete a.ca[c[1]],!0;b=ri(a,c[3]);return void 0!==b?(a.ca[c[1]]=b,!0):!1}a.i("invalid assignment:"+b);return!1}
|
||||
function bj(a,b,c){var d=null;if(b=Hi(a,b,!0)){a.ba(b);var e=Zi(a,b,!0);if(e.length){var f,g;e[0]&&(g="",(f=b.G-e[1])&&(g=" + "+v(f)),f=e[0]+" ("+N(a,e[1])+")"+g,c&&a.i(f),d=f);4<e.length&&e[4]&&(g="",(f=e[5]-b.G)&&(g=" - "+v(f)),f=e[4]+" ("+N(a,e[5])+")"+g,c&&a.i(f),d||(d=f))}else c&&a.i("no symbols")}return d}
|
||||
function Oi(a,b){var c;if(b&&"?"==b[1])a.i("register commands:"),a.i("\tr\tdump registers"),a.i("\trm\tdump misc registers"),a.i("\trx [#]\tset flag or register x to [#]");else{var d=!1,e=a.b;null==c&&(c=!0);if(b&&1<b.length){var f=b[1];if("m"==f)d=!0;else{var g=f.indexOf("=");if(0<g)b=f.substr(g+1),f=f.substr(0,g);else if(2<b.length)b=b[2];else{a.i("missing value for "+b[1]);return}g=ri(a,b);if(void 0===g)return;b=f.toUpperCase();switch(b){case "SP":case "R6":e.u[6]=g&65535;break;case "PC":case "R7":Sd(e,
|
||||
g);a.L=Y(e.u[7]);break;case "N":e.X=g?32768:0;break;case "Z":e.Z=g?0:1;break;case "V":e.W=g?32768:0;break;case "C":e.V=g?65536:0;break;case "PS":id(e,g);break;case "IR":gd(e,g);break;case "ER":e.oa=g;d=!0;break;case "SL":e.jb=g|255;break;case "MMR0":cd(e,g);d=!0;break;case "MMR3":fd(e,g);d=!0;break;case "AR":a.v&&(d=a.v,oc(d,d.Da=g));d=!0;break;case "DR":a.v&&(d=a.v,Zb(d,d.Db=g));d=!0;break;case "SR":if(a.v&&rc(a.v)){pc(a.v,g);d=!0;break}default:if("R"==b.charAt(0)&&(b=+b.charAt(1),0<=b&&6>b)){e.u[b]=
|
||||
g&65535;break}a.i("unknown register: "+f);return}a.B.Aa();a.i("updated registers:")}}a.i(Yi(a,d));c&&(a.L=Y(e.u[7]),Pi(a,N(a,a.L.G)))}}function cj(a,b){b=za(b);var c=b.match(/^(['"])(.*?)\1$/);c?1<c[2].length?a.i(c[2]):ui(a,null,c[2].charCodeAt(0)):ri(a,b,!0)}
|
||||
function dj(a,b,c){if("?"==c)a.i("trace commands:"),a.i("\tt [#]\ttrace # instructions"),a.i("\ttr [#]\ttrace # instructions with register updates"),a.i("\ttc [#]\ttrace # cycles"),a.i("note: bn [#] breaks after # instructions without updates");else{var d="t"!=b;c=ti(a,c,null,!0)||1;var e=0;"tc"==b&&(e=c,c=1);a.wb=b;Ra(c,function(){return sb(a,!0)&&a.sb(e,d,!1)},function(){a.v&&a.v.stop();a.B.Aa(-1);sb(a,!1)})}}
|
||||
function Pi(a,b,c,d){if(b=Hi(a,b,!0)){void 0===d&&(d=1);var e=256;if(void 0!==c)if("l"==c.charAt(0))c=ti(a,c.substr(1)),null!=c&&(d=c);else{d=Hi(a,c,!0);if(!d||d.G<b.G)return;e=d.G-b.G;if(256<e){a.i("range too large");return}d=-1}c=0;for(var f;0<e&&d--;){f=yb(a,!1)||a.P?a.K:null;var g=null!=f?"cycles":null,h=Zi(a,b),l=b.G;if(h[0]&&d&&(!c&&d||0>h[0].indexOf("+"))){var m=h[0]+":";h[2]&&(m+=" "+h[2]);a.i(m)}h[3]&&(g=h[3],f=null);f=Vi(a,b,g,f);a.i(f);a.L=b;e-=b.G-l;c++}}}
|
||||
function Ui(a,b,c){var d=!0;try{b.length&&"end"!=b?c||a.i(">> "+b):(a.T&&(a.i("ended assemble at "+N(a,a.S.G)),a.L=a.S,a.T=!1),b="");var e=b.charAt(0);if('"'==e||"'"==e)return!0;a.na=null;if(zb(a)&&0<b.length){a.T&&(b="a "+N(a,a.S.G)+" "+b);var f=!1,g=b.replace(/ +/g," ").split(" ");g[0]=g[0].toLowerCase();if(g&&g.length)for(var h=g[0],l=h.charAt(0),m=1;m<h.length;m++){var n=h.charAt(m);if("?"==l||"r"==l||"a">n||"z"<n){g[0]=h.substr(m);g.unshift(h.substr(0,m));break}}switch(g[0].charAt(0)){case "a":var r=
|
||||
Hi(a,g[1],!0);if(r)if(a.S=r,void 0===g[2])a.i("begin assemble at "+N(a,r.G)),a.T=!0,a.B.Aa();else{var u;a.i("not supported yet");u=[];if(u.length){for(var t=0;t<u.length;t++)a.Tb(r,u[t],1);a.i(Vi(a,a.S))}}break;case "b":a:{var C=g[0],y=g[1],A=b;if("?"==y)a.i("breakpoint commands:"),a.i("\tbp [#]\tset exec breakpoint at addr #"),a.i("\tbr [#]\tset read breakpoint at addr #"),a.i("\tbw [#]\tset write breakpoint at addr #"),a.i("\tbc [#]\tclear breakpoint at addr #"),a.i("\tbl\tlist all breakpoints"),
|
||||
a.i("\tbn [#]\tbreak after # instruction(s)");else{var D=C.charAt(1);if("l"==D){var Sa;Sa=0+Ti(a,a.f);Sa+=Ti(a,a.N);(Sa+=Ti(a,a.F))||a.i("no breakpoints")}else if("n"==D)a.wa=ti(a,y),a.i("break after "+a.wa+" instruction(s)");else if(void 0===y)a.i("missing breakpoint address");else{var S=Y();if("*"!=y&&(S=Hi(a,y,!0),!S))break a;"c"==D?null==S.G?(xi(a),a.i("all breakpoints cleared")):Ri(a,a.f,S)||Ri(a,a.N,S)||Ri(a,a.F,S)||a.i("breakpoint missing: "+N(a,S.G)):null!=S.G&&(Li(a,S,A),"p"==D?a.xb(a.f,
|
||||
S):"r"==D?a.xb(a.N,S):"w"==D?a.xb(a.F,S):a.i("unknown breakpoint command: "+D))}}}break;case "c":a.gb&&(a.gb.value="");break;case "d":a:{var tb,Ja=g[0],ua=g[1],Ka=g[2],wj=g[3];if("?"==ua){var ub="";for(tb in Fb)a.Qa[tb]&&(ub&&(ub+=","),ub+=tb);ub+=",state,symbols";a.i("dump memory commands:");a.i("\tda [a] dump info for address a");a.i("\tdb [a] [n] dump n bytes at address a");a.i("\tdw [a] [n] dump n words at address a");a.i("\tdd [a] [n] dump n dwords at address a");a.i("\tds [a] [n] dump n words at address a as JSON");
|
||||
a.i("\tdh [p] [n] dump n instructions from history position p");ub.length&&a.i("dump extension commands:\n\t"+ub)}else if("state"==ua){var eh=ej(a.B,!0);"console"==Ka?console.log(eh):(a.gb&&(a.gb.value=""),a.i(eh))}else if("symbols"==ua)for(var be=0;be<a.I.length;be++){var ce=a.I[be],vb;for(vb in ce.ja)if("."!=vb.charAt(0)){var fh=ce.ja[vb].o;if(void 0!==fh){var gh=ce.ja[vb].l;gh&&(vb=gh);a.i(N(a,fh)+" "+vb)}}}else{if("d"==Ja){for(tb in Fb)if(g[1]==tb){var hh=a.Qa[tb];hh?(g.shift(),g.shift(),hh(g)):
|
||||
a.i("no dump registered for "+ua);break a}ua||(Ja=a.Yb||"dw")}else a.Yb=Ja;if("dh"==Ja){var ih=ua,jh=Ka,kh="",lh=0,ma=a.da,va=a.H;if(va.length){var ga=+ih||a.ub,bc=+jh||10;isNaN(ga)?ga=bc:kh="more ";ga>va.length&&(a.i("note: only "+va.length+" available"),ga=va.length);ma-=ga;0>ma&&(null==va[va.length-1].G?(ga=ma+ga,ma=0):ma+=va.length);var de=[];"call"==jh&&(bc=1E5,de=["CALL"]);for(void 0!==ih&&a.i(ga+" instructions earlier:");0<bc&&ma!=a.da;){var mh=va[ma++];if(null==mh.G)break;var cc=Y(mh.G),xj=
|
||||
ga--,nh=Vi(a,cc,"history",xj);(!de.length||0<=nh.indexOf(de[0]))&&a.i(nh);cc.pc&&(ma+=cc.pc,bc-=cc.pc,ga-=cc.pc);ma>=va.length&&(ma=0);a.ub=ga;lh++;bc--}}lh||(a.i("no "+kh+"history available"),a.ub=void 0)}else{var wa=Hi(a,ua);if(wa)if("da"==Ja){var ha=a.b.fc(wa.G);a.i(ta("",19)+oa(wa.G,17,3)+" "+p(wa.G,8));1<ha.length&&(a.i(ta("",24)+oa(ha[1],13,3)+" "+p(ha[1],8)),a.i("+ "+Di[ha[2]]+"PAR"+ha[3]+": "+oa(ha[4],22,3)+" "+p(ha[4],8)),a.i("& MMUMASK: "+oa(ha[5],22,3)+" "+p(ha[5],8)),a.i("= PHYSICAL: "+
|
||||
oa(ha[0],22,3)+" "+p(ha[0],8)))}else{var Va=0,ee="ds"==Ja;if(Ka){if("l"==Ka.charAt(0))Ka=Ka.substr(1)||wj,Va=ti(a,Ka);else{var oh=Hi(a,Ka);oh&&(Va=oh.G-wa.G)}0>Va&&(Va=0);65536<Va&&(Va=65536)}for(var Wa="dd"==Ja?4:"db"==Ja?1:2,Sc=Wa*Va||128,fe=ee?16:a.ma,yj=(Sc+fe-1)/fe|0||1,Xa="";yj--&&0<Sc;){for(var Ya="",ge="",ua=N(a,wa.G),Tc=fe,dc=0,ec=0;0<Tc&&0<Sc;){var wb=1,Uc=1==Wa?a.Ab(wa,wb):a.xa(wa,wb=2),dc=dc|Uc<<(ec<<3),ec=ec+wb;ec==Wa&&(ee?(Ya&&(Ya+=","),Ya+="0x"+q(dc,2*Wa)):(Ya+=N(a,dc,Wa),Ya+=1==Wa?
|
||||
9==Tc?"-":" ":" "),dc=ec=0);Tc-=wb;for(Sc-=wb;1==Wa&&wb--;)var he=Uc&255,ge=ge+(32<=he&&128>he?String.fromCharCode(he):"."),Uc=Uc>>8}Xa&&(Xa+="\n");Xa=ee?Xa+(Ya+","):Xa+(ua+": "+Ya+(0==Tc?" "+ge:""))}Xa&&a.i(Xa);a.Ya=wa}}}}break;case "e":if("else"==g[0])break;var xb,ie,je,ke,le=g[0],me=g[1];"eb"==le?(xb=1,ie=255,je=a.Ab,ke=a.Tb):"e"==le||"ew"==le?(xb=2,ie=65535,je=a.xa,ke=a.Gb):me=null;if(null==me)a.i("edit memory commands:"),a.i("\teb [a] [...] edit bytes at address a"),a.i("\tew [a] [...] edit words at address a");
|
||||
else{var Vc=Hi(a,me);if(Vc)for(var Wc=2;Wc<g.length;Wc++){var fc=ri(a,g[Wc]);if(void 0===fc){a.i("unrecognized value: "+g[Wc]);break}fc&~ie&&a.i("warning: "+q(fc)+" exceeds "+xb+"-byte value");a.i("changing "+N(a,Vc.G)+(K(a,16)?"":" from "+N(a,je.call(a,Vc),xb))+" to "+N(a,fc,xb));ke.call(a,Vc,fc,xb)}}break;case "g":a:{var ph=g[1],zj=b;if(void 0!==ph){var ne=Hi(a,ph,!0);if(!ne)break a;Li(a,ne,zj);a.xb(a.f,ne,!0)}a.lb(!0,c)}break;case "h":a.C.U?(c||a.i("halting"),a.aa()):yb(a,!0)||c||a.i("already halted");
|
||||
break;case "i":if("if"==g[0]){var oe;var gc=b.substr(2),gc=za(gc);ri(a,gc)?(c||a.i("true: "+gc),oe=!0):(c||a.i("false: "+gc),oe=!1);oe||(d=!1);break}f=!0;break;case "k":var Aj=g[0];if("?"==g[1])a.i("stack trace commands:"),a.i("\tk\tshow frame addresses"),a.i("\tks\tshow symbol information");else{var pe=0,qe=Y(),hc=Y(a.b.u[6]);for(a.i("stack trace for "+N(a,hc.G));10>pe;){for(var Za=null,Bj=256;65536>hc.G>>>0;){qe.G=a.xa(hc,2);if(null==hc.G||!Bj--)break;if(!(qe.G&1)){for(var Cj=a,Xc=qe,qh=null,ic=
|
||||
Xc.G,rh=ic,re=1;6>=re&⁣re++){if(2<re){Xc.G=ic;var Yc=Vi(Cj,Xc);if(0<=Yc.indexOf("JSR")){var sh=Yc.indexOf(" ");if(ic+(Yc.indexOf(" ",sh+1)-sh-1)/2==rh){qh=Yc;break}}}ic-=2}Xc.G=rh;if(Za=qh)break}}if(!Za||null==Za)break;var th=null;if("ks"==Aj){var uh=Za.match(/[0-9A-F]+$/);uh&&(th=bj(a,uh[0]))}Za=ta(Za,50)+" ;"+(th||"stack="+N(a,hc.G));a.i(Za);pe++}pe||a.i("no return addresses found")}break;case "l":if("ln"==g[0]){bj(a,g[1],!0);break}f=!0;break;case "m":a:{var xa,ya=null,J=g[1];"?"==J&&(J=void 0);
|
||||
if(void 0!==J){var La=0;if("all"==J)La=1879046143,J=null;else if("on"==J)ya=!0,J=null;else if("off"==J)ya=!1,J=null;else{"keys"==J&&(J="key");"kbd"==J&&(J="keyboard");for(xa in Fb)if(J==xa){La=Fb[xa];ya=!!(a.pa&La);break}if(!La){a.i("unknown message category: "+J);break a}}if(La)if("on"==g[2])a.pa|=La,ya=!0;else if("off"==g[2]&&(a.pa&=~La,ya=!1,1073741824==La)){for(var vh=1E3<=a.Y.length?a.Y.length-1E3:0;vh<a.Y.length;)a.i(a.Y[vh++]);a.Y=[]}}var Dj=0,jc="";for(xa in Fb)if(!J||J==xa){var Ej=!!(a.pa&
|
||||
Fb[xa]);if(null===ya||ya==Ej)jc&&(jc+=","),++Dj%10||(jc+="\n\t"),"key"==xa&&(xa="keys"),jc+=xa}void 0===J&&a.i("message commands:\n\tm [category] [on|off]\tturn categories on/off");a.i((null!==ya?ya?"messages on: ":"messages off: ":"message categories:\n\t")+(jc||"none"));yi(a)}break;case "p":if("print"==g[0]){cj(a,b.substr(5));break}var Fj=g[0];if("?"==g[1])a.i("step commands:"),a.i("\tp\tstep over instruction"),a.i("\tpr\tstep over instruction with register update");else{var wh="pr"==Fj?1:0,xh=
|
||||
1+wh;if(a.P)a.i("step in progress");else{var Zc=Y(a.b.u[7]),kc=a.xa(Zc);3==kc||4==kc||34816==(kc&65280)||35072==(kc&65280)?(a.P=xh,Ii(Zc,2)):2048==(kc&65024)&&(Vi(a,Zc),a.P=xh);a.P?(a.xb(a.f,Zc,!0),a.lb()||(a.B&&a.B.rb(),a.P=0)):dj(a,wh?"tr":"t")}}break;case "r":if("reset"==b){a.B&&a.B.reset();break}Oi(a,g);break;case "s":a:switch(g[1]){case "base":if(g[2]){var lc=+g[2];if(8==lc||10==lc||16==lc)a.ma=lc;else{a.i("invalid base: "+lc);break}}a.i("default base: "+a.ma);break;case "cs":var mc;void 0!==
|
||||
g[3]&&(mc=+g[3]);switch(g[2]){case "int":a.b.Pb=mc;break;case "start":a.b.$b=mc;break;case "stop":a.b.Qb=mc;break;default:a.i("unknown cs option");break a}void 0!==mc&&Ed(a.b);a.i("checksums "+(a.b.C.Lb?"enabled":"disabled"));break;case "sp":void 0!==g[2]&&(Id(a.b,+g[2])||a.i("warning: using 1x multiplier, previous target not reached"));a.i("target speed: "+(a.b.Cb.toFixed(2)+"Mhz")+" ("+a.b.pb+"x)");break;default:if(g[1]){a.i("unknown option: "+g[1]);break}case "?":a.i("debugger options:"),a.i("\tbase #\t\tset default base to #"),
|
||||
a.i("\tcs int #\tset checksum cycle interval to #"),a.i("\tcs start #\tset checksum cycle start count to #"),a.i("\tcs stop #\tset checksum cycle stop count to #"),a.i("\tsp #\t\tset speed multiplier to #")}break;case "t":dj(a,g[0],g[1]);break;case "u":Pi(a,g[1],g[2],8);break;case "v":if("var"==g[0]){aj(a,b.substr(3))||(d=!1);break}if("ver"==g[0]){a.i("PDPjs version 1.30.6 ("+a.b.bb+",RELEASE"+(Cb?",TYPEDARRAYS":",LONGARRAYS")+")");a.i(window?window.navigator.userAgent:"");break}f=!0;break;case "?":if(g[1]){cj(a,
|
||||
b.substr(1));break}var se="commands:",te;for(te in Ai)se+="\n"+ta(te,9)+Ai[te];Je(a)||(se+="\nnote: history disabled if no exec breakpoints");a.i(se);break;default:f=!0}f&&(a.i("unknown command: "+b),d=!1)}}catch(yh){a.i("debugger error: "+(yh.stack||yh.message)),d=!1}return d}function Gd(a,b,c){b=pi(a,b,c);for(var d in b)if(!Ui(a,b[+d]))return!1;return!0}db(function(){for(var a=H(document,"pdp11","debugger"),b=0;b<a.length;b++){var c=a[b],d=F(c),d=new wi(d);G(d,c)}});
|
||||
function fj(a,b,c){z.call(this,"Computer",a,fj,33554432);this.C.la=!1;gj(this,b);this.L=Cd(this,"autoPower",a);this.g=0;this.Y=a.busWidth||a.buswidth;this.f=hj;this.I=null;this.F=this.S=!1;this.ca=Cd(this,"url")||"";(Math.random()+.1).toString(36);this.B=ij(this);if(this.b=rb("CPU",this.id)){this.j=rb("Debugger",this.id);this.w=new tc({id:this.nb+".bus",busWidth:this.Y},this.b,this.j);var d,e=pb(this.id);if((this.v=rb("Panel",this.id))&&this.v.gb)for(b=0;b<e.length;b++)d=e[b],d.M=this.v.M,d.i=this.v.i,
|
||||
d.gb=this.v.gb;this.i("PDPjs v1.30.6\nCopyright \u00a9 2012-2016 Jeff Parsons <Jeff@pcjs.org>\nLicense: GPL version 3 or later <http://gnu.org/licenses/gpl.html>");this.i("Portions adapted from the PDP-11/70 Emulator v1.4 by Paul Nankervis <paulnank@hotmail.com>");for(b=0;b<e.length;b++)d=e[b],d.Ia&&d.Ia(this,this.w,this.b,this.j);b=null;d=a.resume;void 0!==d&&(1<d.length?b=this.H=d:this.f=parseInt(d,10));var f;if(a=Cd(this,"state")||(f=!0,a.state))b=this.N=a,f||(this.F=!0,this.f=hj),this.f&&(this.K=
|
||||
new U(this,"1.30.6"),jj(this.K)?b=null:delete this.K);!b&&this.f&&(b=kj(this))&&(this.F=!0);if(b){var g=this;Ea(b,null,!0,function(a,b,c){c?(g.H=null,g.F=!1,g.M("Unable to load machine state from server (error "+c+(b?": "+za(b):"")+")")):(g.I=b,g.S=!0);L(g)})}else L(this);this.D.power||(this.L=!0);!c&&this.L&&lj(this,this.ac)}else x("Unable to find CPU component")}E(fj);var hj=0;
|
||||
function gj(a,b){if(!b){var c;if("object"==typeof resources&&(c=resources.parms))try{b=eval("("+c+")")}catch(d){x(d.message+" ("+c+")")}}a.T=b}function Cd(a,b,c){var d=b.toLowerCase(),d=ib[b]||ib[d];void 0===d&&a.T&&(d=a.T[b]);void 0===d&&c&&(d=c[b]);void 0===d&&"object"==typeof resources&&resources[b]&&(d=b);return d}function lj(a,b,c){for(var d=pb(a.id),e=0;e<=d.length;e++){var f=e<d.length?d[e]:a;if(!zb(f)){zb(f,function(){lj(a,b,c)});return}}b.call(a,c)}
|
||||
function mj(a,b){var c=new U(a,"1.30.6","validate");if(jj(c)&&nj(c)){var d=c.get("timestamp"),e=b?b.get("timestamp"):"unknown";d!=e&&(a.M("Machine state may be out-of-date\n("+d+" vs. "+e+")\nCheck your browser's local storage limits"),b||c.clear())}}k=fj.prototype;
|
||||
k.ac=function(a){void 0===a&&(a=this.f||(this.I?1:hj));if(!this.g){this.g++;var b=!1,c=!1;this.P=!1;var d=this.K||new U(this,"1.30.6");if(-1==a)b=!0;else if(a>hj){if(jj(d,this.I)){this.A=new U(this,"1.30.6","failsafe");jj(this.A)&&(oj(this,d),a=2,pj(this.A));this.A.set("timestamp",Da());qj(this.A);var e=this.f&&!this.F;if(1==a||Ha("Click OK to restore the previous PDPjs machine state, or CANCEL to reset the machine.")){if(c=nj(d)){var f=d.get("code"),g=d.get("data");f&&("ok"==f?jj(d,g):("error"==
|
||||
f&&"no machine state"!=g?(this.M("Error: "+g),"unable to verify user"==g&&(Oa("user",""),this.B=null)):this.i(f+": "+g),pj(d),jj(d)?(c=nj(d),e=!0):c=!1))}e&&mj(this,c?d:null)}else 2==a&&d.clear()}else mj(this);delete this.I;delete this.K}e=pb(this.id);for(f=0;f<e.length;f++)g=e[f],g!==this&&g!=this.b&&(c=rj(this,g,d,b,c));b=[d,a,c];-1!=a?lj(this,this.Oc,b):this.Oc(b)}};
|
||||
function rj(a,b,c,d,e){if(!b.C.la){b.C.la=!0;if(b.Ma){var f=null;e&&((f=c.get(b.id))||(f=c.get(b.id.replace(/[a-z0-9]\./i,"."))));"string"===typeof f&&(f=null);!b.Ma(f,d)&&f&&(x("Unable to restore state for "+b.type),a.N&&!a.S?(c.clear(),a.f=hj,window&&window.location.reload()):a.P=!0,b.Ma(null),e=!1)}if(!d&&b.Ec)for(a=b.Ec.split("|"),c=0;c<a.length;c++)b.status(a[c])}return e}
|
||||
k.Oc=function(a){var b=a[0],c=0>a[1];a=a[2];this.da=!0;this.C.la=!0;var d=this.D.power;d&&(d.textContent="Shutdown");this.b&&(rj(this,this.b,b,c,a),this.Aa(),this.b.fb());this.P&&(oj(this,b),b.clear());!c&&this.A&&(this.A.clear(),delete this.A);this.g=0};
|
||||
function oj(a,b){if(Ha("There may be a problem with your PDPjs machine.\n\nTo help us diagnose it, click OK to send this PDPjs machine state to http://www.pcjs.org.")){var c=a.B||"";b=b.toString();var d={app:"PDPjs",ver:"1.30.6"};d.url=a.ca;d.user=c;d.type="bug";d.data=b;Ea("http://www.pcjs.org/api/v1/report",d,!0)}}
|
||||
function ej(a,b,c){var d,e="none";if(a.g)return null;a.g--;var f=new U(a,"1.30.6"),g=new U(a,"1.30.6","validate"),h=Da();g.set("timestamp",h);f.set("timestamp",h);f.set("version","1.30.6");f.set("url",window?window.location.href:null);f.set("browser",window?window.navigator.userAgent:"");a.b&&a.b.La&&(c&&a.b.aa(),d=a.b.La(b,c),"object"===typeof d&&f.set(a.b.id,d),c&&(a.b.C.la=!1,!1===d&&(e=null)));for(var h=pb(a.id),l=0;l<h.length;l++){var m=h[l];m.C.la&&(m.La&&(d=m.La(b,c),"object"===typeof d&&f.set(m.id,
|
||||
d)),c&&(m.C.la=!1,!1===d&&(e=null)))}e&&(c?(h=d=!1,b?(a.B&&sj(a,a.B,f.toString()),qj(g)&&qj(f)||(e=null,d=h=!0)):a.f&&(d=!0,h=3==a.f),d&&f.clear(h)):e=f.toString());c&&(a.C.la=!1,b=a.D.power)&&(b.textContent="Power");a.g=0;return e}
|
||||
k.reset=function(){this.w&&this.w.reset&&(I(this,"Resetting "+this.w.type),this.w.reset());this.b&&this.b.reset&&(I(this,"Resetting "+this.b.type),this.b.reset());for(var a=pb(this.id),b=0;b<a.length;b++){var c=a[b];c!==this&&c!==this.w&&c!==this.b&&c.reset&&(I(this,"Resetting "+c.type),c.reset())}this.Aa(-1)};k.start=function(a,b){for(var c=pb(this.id),d=0;d<c.length;d++){var e=c[d];"CPU"!=e.type&&e!==this&&e.start&&e.start(a,b)}this.Aa(-1)};
|
||||
k.stop=function(a,b){for(var c=pb(this.id),d=0;d<c.length;d++){var e=c[d];"CPU"!=e.type&&e!==this&&e.stop&&e.stop(a,b)}this.Aa(-1)};
|
||||
k.Aa=function(a){if(this.b){var b=this.b,c=a||0,d=b.D.speed;d&&(0>=c||30<=(b.Xb+=c))&&(d.textContent=b.C.U?b.Ba.toFixed(2)+"Mhz":"Stopped",b.Xb=0)}if(this.v&&(b=this.v,a=a||0,b.F)){c=b.b.C.U;d=!!(b.b.J&8);if(0>=a||60<=(b.A+=a)){for(var e=0;e<b.b.u.length;e++)Tb(b,"R"+e,b.b.u[e]);e=hd(b.b);Tb(b,"PS",e);Tb(b,"NF",e&8?1:0,1);Tb(b,"ZF",e&4?1:0,1);Tb(b,"VF",e&2?1:0,1);Tb(b,"CF",e&1?1:0,1);b.A=0}oc(b,0<a&&c&&!d?b.b.Kb:b.Da);Zb(b,b.Db);a=b.b;a=a.ca?a.Na&16?1:2:4;qc(b,"B22",a&1);qc(b,"B18",a&2);qc(b,"B16",
|
||||
180:[92],181:[85],182:[90],183:[84],184:[87],185:[81],186:[89],187:[83],188:[93],189:[86],190:[91],191:[79]}},Di=[0],Ei=[58,60,65,96,108,110,100,101,102,103,104,105,59,64];h=ui.prototype;
|
||||
h.Ia=function(a,b,c,d){this.w=b;this.B=a;this.b=c;this.v=a.v;(a=Bd(a,"messages"))&&xi(this,a);this.zb=Ci;this.Nb=1145>this.b.gb?Ei:[];Rc(this,16,function(a){a:{var b=d.w.ga,c=a[0],e=a=0,l=b.length;if(c){a=d.aa(Fi(d,c));if(-1===a){d.j("invalid address: "+c);break a}e=a>>>d.w.Ba;l=1}d.j("blockid physical blockaddr used size type");d.j("-------- --------- --------- ------ ------ ----");for(var c=-1,m=0;l--;){var n=b[e];n.type==c?m++||d.j("..."):(c=n.type,m=Fc[c],n&&d.j(q(n.id,8)+" %"+
|
||||
q(e<<d.w.Ba,8)+" %"+q(n.H,8)+" "+v(n.$b)+" "+v(n.size)+" "+m),c!=nd&&(c=-1),m=0);a+=d.w.Ja;e++}}});K(this)};
|
||||
h.xa=function(a,b,c){var d=this;switch(b){case "debugInput":return this.va=this.D[b]=c,c.onkeydown=function(a){var b;if(13==a.keyCode)b=c.value,c.value="",Fd(d,b,!0);else if(27==a.keyCode)c.value=b="";else if(38==a.keyCode?(b=null,d.A<d.g.length-1&&(b=d.g[++d.A])):40==a.keyCode&&(0<d.A?b=d.g[--d.A]:(b="",d.A=-1)),null!=b){var e=b.length;c.value=b;c.setSelectionRange(e,e)}null!=b&&a.preventDefault&&a.preventDefault()},!0;case "debugEnter":return this.D[b]=c,Sa(c,function(){if(d.va){var a=d.va.value;
|
||||
d.va.value="";Fd(d,a,!0);return!0}return!1}),!0;case "step":return this.D[b]=c,Sa(c,function(a){var b=!1;ub(d,!0)||(tb(d,!0),b=d.xb(a?1:0,null),tb(d,!1));return b}),!0}return!1};h.wb=function(a){if(this.va){var b=0,c=0;!a&&window&&(b=window.scrollX,c=window.scrollY);this.va.focus();!a&&window&&window.scrollTo(b,c)}};h.aa=function(a){a=a&&a.H;null==a&&(a=-1);return a};h.fb=function(a){return 3932160<=a?this.b.fb(a):a};
|
||||
h.cb=function(a,b){var c=255,d=this.aa(a,!1,1);-1!==d&&(a.ab||65535<d?d=this.w.kc(this.fb(d)):(c=this.b,c.K++,d=c.w.cb(ac(c,d,3)),c.K--),c=d,b&&Gi(a,b));return c};h.ia=function(a,b){var c=65535,d=this.aa(a,!1,2);-1!==d&&(c=a.ab||65535<d?this.w.Eb(this.fb(d)):bc(this.b,d),b&&Gi(a,b));return c};h.ob=function(a,b,c){var d=this.aa(a,!0,1);if(-1!==d){if(a.ab||65535<d)this.w.Lb(this.fb(d),b);else{var e=this.b;e.K++;e.w.ob(ac(e,d,5),b);e.K--}c&&Gi(a,c);this.B.ya(-1)}};
|
||||
h.Sa=function(a,b,c){var d=this.aa(a,!0,2);if(-1!==d){if(a.ab||65535<d)this.w.Mb(this.fb(d),b);else{var e=this.b;e.K++;e.w.Sa(ac(e,d,4),b);e.K--}c&&Gi(a,c);this.B.ya(-1)}};function X(a,b){return{H:a,ab:b,bb:!1}}h.Dc=function(a,b){a.H=b;a.bb=!1;return a};function Hi(a){return[a.H,a.bb]}function Ii(a){return{H:a[0],bb:a[1]}}
|
||||
function Fi(a,b,c){var d,e=(c?a.L:a.Ya).H;c=!1;if(void 0!==b){b=qi(a,b);"%"==b.charAt(0)&&(c=!0,b=b.substr(1));d=b;var f;if(d.match(/^[a-z_][a-z0-9_]*$/i))for(d=d.toUpperCase(),e=0;e<a.G.length;e++){var g=a.G[e].ka[d];if(void 0!==g){d=g.o;void 0!==d&&(f=X(d));break}}if(d=f)return d;e=pi(a,b,void 0)}null!=e&&(d=X(e,c));return d}function Ji(a,b,c){c&&(c=c.match(/(['"])(.*?)\1/))&&(b.wd=ni(a,b.fd=c[2]))}function Gi(a,b){null!=a.H&&(a.H+=b||1)}function Y(a,b){return(b.ab?"%":"")+M(a,b.H)}
|
||||
function xi(a,b){a.i=a;a.ra=a.Bd=536870912;a.oa=null;a.Y=[];b=ni(a,b.replace("keys","key").replace("kbd","keyboard"),!1,"|");if(b.length)for(var c in Gb){var d;a:if(d=void 0,Array.prototype.indexOf)d=b.indexOf(c,d);else{d=d||0;0>d&&(d+=b.length);0>d&&(d=0);for(var e=b.length;d<e;d++)if(d in b&&b[d]===c)break a;d=-1}0<=d&&(a.ra|=Gb[c],a.j(c+" messages enabled"))}}function Rc(a,b,c){for(var d in Gb)if(b==Gb[d]){a.Pa[d]=c;break}}
|
||||
h.Zc=function(a){a=a.toUpperCase();var b=Ai[a];null==b&&(b=-1,"R"==a.charAt(0)&&(b=+a.charAt(1),0>b||7<b))&&(b=-1);return b};function Ki(a){return 6>a?"R"+a:6==a?"SP":"PC"}
|
||||
h.$c=function(a){var b;if(0<=a)if(8>a)b=this.b.u[a];else if(16>a)b=this.b.hb[a-8];else if(20>a)b=this.b.Na[a-16];else{var c=this.b,d=this.v;switch(a){case 20:b=gd(this.b);break;case 21:b=c.Ib;break;case 22:b=c.qa;break;case 23:b=c.mb;break;case 24:b=ad(c);break;case 25:b=cd(c);break;case 26:b=dd(c);break;case 27:b=c.Ma;break;case 28:d&&(b=d.Da);break;case 29:d&&(b=d.Hb);break;case 30:d&&rc(d)&&(b=d.nb)}}return b};
|
||||
h.ad=function(a){var b;a:{b=this.w;a=a.toUpperCase();for(var c in b.Ua){var d=+c;if(b.Ua[d][4]==a){b=b.Ha+d;break a}}b=null}return b};h.message=function(a,b){b&&(a+=" @"+Y(this,X(this.b.pa&65535)));if(!this.oa||a!=this.oa)if(this.oa=a,this.ra&1073741824)this.Y.push(a);else{var c;if(this.ra&-2147483648&&this.b&&(c=this.b.C.U)||ub(this,!0))this.ea(),c&&(a+=" (cpu halted)");this.j(a);this.b&&(a=this.b,Jd(a),a.Pa=0,a.ya())}};
|
||||
function wi(a){var b;if(!He(a))a.F&&a.F.length&&a.j("instruction history buffer freed"),a.ca=0,a.F=[];else if(!a.F||!a.F.length){a.F=Array(1E3);for(b=0;b<a.F.length;b++)a.F[b]=X();a.ca=0;a.j("instruction history buffer allocated")}}h.pb=function(a,b){if(!Li(this,b))return!1;this.b.pb(a);return!0};
|
||||
h.xb=function(a,b,c){if(!Li(this))return!1;null===b&&(b=!this.Ab||"tr"==this.Ab);this.I=0;a||He(this)&&Ie(this,this.b.u[7],0);try{a=Kd(this.b,a);var d=this.b.xb(a);0<d&&(Wb(this.b,d),this.I+=d,Xb(this.b,d,!0),Yb(this.b,d),this.za++)}catch(e){"number"!=typeof e&&(this.I=0,Cb(this.b,e.stack||e.message))}!1!==c&&(this.v&&this.v.stop(),this.B.ya(-1));Ed(this,b||!1);return 0<this.I};h.ea=function(a){this.b&&this.b.ea(a)};
|
||||
function Ed(a,b){if(a.Za){void 0===b&&(b=!0);var c;c=a.b;if(c=c.J&128?c.Id|c.Hd<<8:0){var d=c>>8;a.j("trapped to "+M(a,c&255,1)+" ("+(0>d?Eb[-d]:M(a,d))+")")}a.L=X(a.b.u[7]);b&&1!=a.N?Mi(a):Ni(a)}}function Li(a,b){var c;(c=!a.b||!Ab(a.b))||(c=a.b,c.C.ma?c=!0:(c.j(c.toString()+" not powered"),c=!1),c=!c);return c||a.b.C.U?(b||a.j("cpu busy or unavailable, command ignored"),!1):!Bb(a.b)}h.La=function(a,b){return!b&&(this.reset(!0),a&&this.restore&&!this.restore(a))?!1:!0};
|
||||
h.Ka=function(a,b){b&&this.j(a?"suspending":"shutting down");return a?this.save():!0};h.reset=function(a){wi(this);this.za=0;this.oa=null;this.I=0;this.L=X(this.b.u[7]);this.C.U=!1;Oi(this);a||Ed(this)};h.save=function(){var a=new T(this);a.set(0,Hi(this.L));a.set(1,Hi(this.S));a.set(2,[this.g,this.T,this.ra]);a.set(3,this.G);return a.data()};
|
||||
h.restore=function(a){var b=0;void 0!==a[2]&&(this.L=Ii(a[b++]),this.S=Ii(a[b++]),this.g=a[b][0],"string"==typeof this.g&&(this.g=[this.g]),this.T=a[b][1],this.ra|=a[b][2]);a[3]&&(this.G=a[3]);return!0};h.start=function(a,b){this.N||this.j("running");this.C.U=!0;this.Ob=a;this.Pb=b};
|
||||
h.stop=function(a,b){if(this.C.U){this.C.U=!1;this.I=b-this.Pb;if(!this.N){b="stopped";if(this.I){a-=this.Ob;var c=0<a?Math.round(1E3*this.I/a):0;b+=" (";He(this)&&(b+=this.za+" instructions, ",this.za=0);b+=this.I+" cycles, "+a+" ms, "+c+" hz)"}else I(this,-2147483648)&&(b+=" (use the 't' command to execute blocked faults)");this.j(b)}Ed(this,!0);this.wb();Oi(this,this.b.u[7]);this.oa=null}};function He(a){return 1<a.f.length||!!a.wa}
|
||||
function Ie(a,b,c){var d=-1;c||(d=bc(a.b,b),0==d&&(a.b.pa&65535)==b&&(b=Wd(a.b,2)));if(0<c&&(a.wa&&!--a.wa||Pi(a,b,1,a.f)))return!0;0<=c&&a.F.length&&(a.za++,0>d&&(d=bc(a.b,b)),65535!=(d&65535)&&(a.Dc(a.F[a.ca],b),++a.ca==a.F.length&&(a.ca=0)));return!1}function Of(a){var b=a.b;if(b.C.U)throw Rd(b,a.b.pa&65535),a.ea(),-1;return!1}function wd(a,b,c){Pi(a,b,c||1,a.P)&&a.ea(!0)}function xd(a,b,c){Pi(a,b,c||1,a.K)&&a.ea(!0)}
|
||||
function vi(a){var b,c,d;a.f=["bp"];if(a.P)for(b=1;b<a.P.length;b++)c=a.P[b],d=a.aa(c),c.ab?a.w.Kb(d,!1):a.b.Kb(d,!1);a.P=["br"];if(a.K)for(b=1;b<a.K.length;b++)c=a.K[b],d=a.aa(c),c.ab?a.w.Kb(d,!0):a.b.Kb(d,!0);a.K=["bw"];a.$a=0}
|
||||
h.Bb=function(a,b,c){var d=!0;c||Qi(this,a,b,!1,!0);if(a!=this.f){var e=this.aa(b);if(-1===e)this.j("invalid address: "+Y(this,b)),d=!1;else{var f=a==this.K;65535<e&&(b.ab=!0);b.ab?this.w.uc(e,f):this.b.uc(e,f)}}d&&(a.push(b),c?b.bb=!0:(Ri(this,a,a.length-1,"set"),wi(this)));return d};
|
||||
function Qi(a,b,c,d,e){var f=!1;c=a.aa(c);for(var g=1;g<b.length;g++){var k=b[g];if(c==a.aa(k)&&(!d||k.bb)){f=!0;k.bb||e||Ri(a,b,g,"cleared");b.splice(g,1);b!=a.f&&(b=b==a.K,k.ab?a.w.Kb(c,b):a.b.Kb(c,b));k.bb||wi(a);break}}return f}function Si(a,b){for(var c=1;c<b.length;c++)Ri(a,b,c);return b.length-1}function Ri(a,b,c,d){c=b[c];a.j(b[0]+" "+Y(a,c)+(d?" "+d:c.fd?' "'+c.fd+'"':""))}
|
||||
function Oi(a,b){if(void 0!==b)Pi(a,b,1,a.f,!0),a.N=0;else for(b=1;b<a.f.length;b++){var c=a.f[b];if(c.bb){if(!Qi(a,a.f,c,!0))break;b=0}}}
|
||||
function Pi(a,b,c,d,e){var f=!1;if(!a.$a++)for(var g=1;!f&&g<d.length;g++){var k=d[g];if(!e||k.bb)for(var l=a.aa(k)&(d==a.f?65535:-1),m=0;m<c;m++)if(b+m==l){var n,f=!0;k.bb&&(Qi(a,d,k,!0),e=!0);if(n=k.wd){for(var f=!1,r=0;r<n.length;r++)if(!Ti(a,n[r],!0)){if(n[r].indexOf("if")){f=!0;break}for(var u=r+1;u<n.length&&n[u].indexOf("else");u++)r++;if(u==n.length){f=!0;break}}a.b.C.U||(f=!0)}if(f){e||Ri(a,d,g,"hit");break}}}a.$a--;return f}
|
||||
function Ui(a,b,c,d){var e=X(b.H),f=a.ia(b,2),g,k;for(k in a.zb)if(g=a.zb[k][f&k])break;g||(g=Di);var l=g[0];0<=a.Nb.indexOf(l)&&(g=Di,l=g[0]);var m=k="",n=zi[l],r=g.length-1;l||r||(k=M(a,f));for(l=1;l<=r;l++){var u=g[l];if(void 0!==u){var t;t=a;var C=u,u=b,y="",A=C&61440;if(4096==A)u=u.H+((f&255)<<24>>23)&65535,y=M(t,u);else if(8192==A)u=u.H-((f&63)<<1)&65535,y=M(t,u);else if(12288==A)y=M(t,f&7,1);else if(24576==A)y=M(t,f&63,1);else if(32768==A)y=M(t,f&255,1);else if(A=f&C,C&4032&&(A>>=6,C>>=6),
|
||||
C&63){var C=null,D=A&7;switch(A&56){case 0:y=Ki(D);break;case 8:y="@"+Ki(D);C=Vi(t,t.b.u[D]);break;case 16:7>D?y="("+Ki(D)+")+":(A=t.ia(u,2),y="#"+M(t,A,0,!0));break;case 24:7>D?y="@("+Ki(D)+")+":(A=t.ia(u,2),y="@#"+M(t,A,0,!0),C=Vi(t,A));break;case 32:y="-("+Ki(D)+")";break;case 40:y="@-("+Ki(D)+")";break;case 48:A=t.ia(u,2);y=M(t,A,0,!0)+"("+Ki(D)+")";7==D&&(y=M(t,A=A+u.H&65535),C=Vi(t,A));break;case 56:A=t.ia(u,2),y="@"+M(t,A)+"("+Ki(D)+")",7==D&&(y="@"+M(t,A=A+u.H&65535),C=Vi(t,bc(t.b,A)))}C&&
|
||||
(y=[y,C])}t=y;if(!t||!t.length){k="INVALID";break}"string"!=typeof t&&(m=t[1],t=t[0]);0<k.length&&(k+=",");k+=t||"???"}}f="";g=Y(a,e)+":";if(-1!==e.H&&-1!==b.H){do if(f+=" "+M(a,a.ia(e,2)),null==e.H)break;while(e.H!=b.H)}g+=ta(f,24);g+=ta(n,5);k&&(g+=" "+k);if(c||m)g=ta(g,60)+";"+(c||""),g=a.b.C.Sb?g+("cycles="+Gd(a.b).toString()+" cs="+q(a.b.cc)):g+(null!=d?"="+d.toString():""),m&&(";"!=g.slice(-1)&&(g+=" "),g+=m);return g}
|
||||
function Vi(a,b){b=a.b.jc(b)[0];b>=a.b.Ha&&b<a.w.Ha&&(b=b-a.b.Ha+a.w.Ha);return a.w.jc(b)}function Wi(a,b){switch(b){case "N":a=Vd(a.b);break;case "Z":a=Ud(a.b);break;case "V":a=Td(a.b);break;case "C":a=Sd(a.b);break;default:a=0}return b.charAt(0)+(a?"1":"0")+" "}
|
||||
function Z(a,b){var c="",d=a.b;if(8>b)c=Ki(b),c+="="+M(a,d.u[b]);else if(13>b)c="A"+(b-8)+"="+M(a,d.hb[b-8]);else if(16<=b&&20>b)c="S"+(b-16)+"="+M(a,d.Na[b-16]);else switch(b){case 20:c="PS="+M(a,gd(d));break;case 21:c="IR="+M(a,d.Ib);break;case 22:c="ER="+M(a,d.qa);break;case 23:c="SL="+M(a,d.mb);break;case 24:c="MMR0="+M(a,ad(d));break;case 25:c="MMR1="+M(a,cd(d));break;case 26:c="MMR2="+M(a,dd(d));break;case 27:c="MMR3="+M(a,d.Ma);break;case 28:a.v&&(c="AR="+M(a,a.v.Da,3));break;case 29:a.v&&
|
||||
(c="DR="+M(a,a.v.Hb));break;case 30:a.v&&rc(a.v)&&(c="SR="+M(a,a.v.nb,3))}c&&(c+=" ");return c}function Xi(a,b){var c,d="";for(c=0;6>c;c++)d+=Z(a,c);d=d+"\n"+(Z(a,6)+Z(a,7));d+=Z(a,20)+Z(a,21)+Z(a,23);d+=Wi(a,"T")+Wi(a,"N")+Wi(a,"Z")+Wi(a,"V")+Wi(a,"C");b&&(b=d,c=""+(Z(a,24)+Z(a,25)),c+=Z(a,26)+Z(a,27)+Z(a,22),c=c+"\n"+(Z(a,30)+Z(a,28)+Z(a,29)),d=b+("\n"+c));return d}h.Wc=function(a,b){return a[0]>b[0]?1:a[0]<b[0]?-1:0};
|
||||
function Og(a,b,c,d,e){var f=[],g;for(g in e){var k=e[g];"number"==typeof k&&(e[g]=k={o:k});var l=k.o,m=k.a;if(void 0!==l){var n=f,l=[l>>>0,g],r=Ba(n,l,a.Wc);0>r&&n.splice(-(r+1),0,l)}m&&(k.a=m.replace(/''/g,'"'))}a.G.push({gh:b,H:c,Od:d,ka:e,Sc:f})}function Yi(a,b,c){var d=[],e=a.aa(b)>>>0;for(b=0;b<a.G.length;b++){var f=a.G[b],g=f.H>>>0,k=f.Od;if(e>=g&&e<g+k){e=Ba(f.Sc,[e-g],a.Wc);0<=e?Zi(a,b,e,d):c&&(e=~e,Zi(a,b,e-1,d),Zi(a,b,e,d));break}}return d}
|
||||
function Zi(a,b,c,d){var e={},f=a.G[b].Sc,g=0,k=null;0<=c&&c<f.length&&(g=f[c][0],k=f[c][1]);k&&(e=a.G[b].ka[k],k="."==k.charAt(0)?null:e.l||k);d.push(k);d.push(g);d.push(e.a);d.push(e.c)}function $i(a,b){var c=b.match(/^\s*([A-Z_]?[A-Z0-9_]*)\s*(=?)\s*(.*)$/i);if(c){if(!c[1])return ti(a)||a.j("no variables"),!0;if(!c[2])return ti(a,c[1]);if(!c[3])return delete a.ba[c[1]],!0;b=pi(a,c[3]);return void 0!==b?(a.ba[c[1]]=b,!0):!1}a.j("invalid assignment:"+b);return!1}
|
||||
function aj(a,b,c){var d=null;if(b=Fi(a,b,!0)){a.aa(b);var e=Yi(a,b,!0);if(e.length){var f,g;e[0]&&(g="",(f=b.H-e[1])&&(g=" + "+v(f)),f=e[0]+" ("+M(a,e[1])+")"+g,c&&a.j(f),d=f);4<e.length&&e[4]&&(g="",(f=e[5]-b.H)&&(g=" - "+v(f)),f=e[4]+" ("+M(a,e[5])+")"+g,c&&a.j(f),d||(d=f))}else c&&a.j("no symbols")}return d}
|
||||
function Mi(a,b){var c;if(b&&"?"==b[1])a.j("register commands:"),a.j("\tr\tdump registers"),a.j("\trm\tdump misc registers"),a.j("\trx [#]\tset flag or register x to [#]");else{var d=!1,e=a.b;null==c&&(c=!0);if(b&&1<b.length){var f=b[1];if("m"==f)d=!0;else{var g=f.indexOf("=");if(0<g)b=f.substr(g+1),f=f.substr(0,g);else if(2<b.length)b=b[2];else{a.j("missing value for "+b[1]);return}g=pi(a,b);if(void 0===g)return;b=f.toUpperCase();switch(b){case "SP":case "R6":e.u[6]=g&65535;break;case "PC":case "R7":Rd(e,
|
||||
g);a.L=X(e.u[7]);break;case "N":e.X=g?32768:0;break;case "Z":e.Z=g?0:1;break;case "V":e.W=g?32768:0;break;case "C":e.V=g?65536:0;break;case "PS":hd(e,g);break;case "IR":fd(e,g);break;case "ER":e.qa=g;d=!0;break;case "SL":e.mb=g|255;break;case "MMR0":bd(e,g);d=!0;break;case "MMR3":ed(e,g);d=!0;break;case "AR":a.v&&(d=a.v,cc(d,d.Da=g));d=!0;break;case "DR":a.v&&(d=a.v,$b(d,d.Hb=g));d=!0;break;case "SR":if(a.v&&rc(a.v)){dc(a.v,g);d=!0;break}default:if("R"==b.charAt(0)&&(b=+b.charAt(1),0<=b&&6>b)){e.u[b]=
|
||||
g&65535;break}a.j("unknown register: "+f);return}a.B.ya();a.j("updated registers:")}}a.j(Xi(a,d));c&&(a.L=X(e.u[7]),Ni(a,Y(a,a.L)))}}function bj(a,b){b=ua(b);var c=b.match(/^(['"])(.*?)\1$/);c?1<c[2].length?a.j(c[2]):si(a,null,c[2].charCodeAt(0)):pi(a,b,!0)}
|
||||
function cj(a,b,c){if("?"==c)a.j("trace commands:"),a.j("\tt [#]\ttrace # instructions"),a.j("\ttr [#]\ttrace # instructions with register updates"),a.j("\ttc [#]\ttrace # cycles"),a.j("note: bn [#] breaks after # instructions without updates");else{var d="t"!=b;c=ri(a,c,null,!0)||1;var e=0;"tc"==b&&(e=c,c=1);a.Ab=b;Ra(c,function(){return tb(a,!0)&&a.xb(e,d,!1)},function(){a.v&&a.v.stop();a.B.ya(-1);tb(a,!1)})}}
|
||||
function Ni(a,b,c,d){if(b=Fi(a,b,!0)){void 0===d&&(d=1);var e=256;if(void 0!==c)if("l"==c.charAt(0))c=ri(a,c.substr(1)),null!=c&&(d=c);else{d=Fi(a,c,!0);if(!d||d.H<b.H)return;e=d.H-b.H;if(256<e){a.j("range too large");return}d=-1}c=0;for(var f;0<e&&d--;){f=ub(a,!1)||a.N?a.I:null;var g=null!=f?"cycles":null,k=Yi(a,b),l=b.H;if(k[0]&&d&&(!c&&d||0>k[0].indexOf("+"))){var m=k[0]+":";k[2]&&(m+=" "+k[2]);a.j(m)}k[3]&&(g=k[3],f=null);f=Ui(a,b,g,f);a.j(f);a.L=b;e-=b.H-l;c++}}}
|
||||
function Ti(a,b,c){var d=!0;try{b.length&&"end"!=b?c||a.j(">> "+b):(a.T&&(a.j("ended assemble at "+Y(a,a.S)),a.L=a.S,a.T=!1),b="");var e=b.charAt(0);if('"'==e||"'"==e)return!0;a.oa=null;if(Ab(a)&&0<b.length){a.T&&(b="a "+Y(a,a.S)+" "+b);var f=!1,g=b.replace(/ +/g," ").split(" ");g[0]=g[0].toLowerCase();if(g&&g.length)for(var k=g[0],l=k.charAt(0),m=1;m<k.length;m++){var n=k.charAt(m);if("?"==l||"r"==l||"a">n||"z"<n){g[0]=k.substr(m);g.unshift(k.substr(0,m));break}}switch(g[0].charAt(0)){case "a":var r=
|
||||
Fi(a,g[1],!0);if(r)if(a.S=r,void 0===g[2])a.j("begin assemble at "+Y(a,r)),a.T=!0,a.B.ya();else{var u;a.j("not supported yet");u=[];if(u.length){for(var t=0;t<u.length;t++)a.ob(r,u[t],1);a.j(Ui(a,a.S))}}break;case "b":a:{var C=g[0],y=g[1],A=b;if("?"==y)a.j("breakpoint commands:"),a.j("\tbp [#]\tset exec breakpoint at addr #"),a.j("\tbr [#]\tset read breakpoint at addr #"),a.j("\tbw [#]\tset write breakpoint at addr #"),a.j("\tbc [#]\tclear breakpoint at addr #"),a.j("\tbl\tlist all breakpoints"),
|
||||
a.j("\tbn [#]\tbreak after # instruction(s)");else{var D=C.charAt(1);if("l"==D){var Ua;Ua=0+Si(a,a.f);Ua+=Si(a,a.P);(Ua+=Si(a,a.K))||a.j("no breakpoints")}else if("n"==D)a.wa=ri(a,y),a.j("break after "+a.wa+" instruction(s)");else if(void 0===y)a.j("missing breakpoint address");else{var S=X();if("*"!=y&&(S=Fi(a,y,!0),!S))break a;"c"==D?null==S.H?(vi(a),a.j("all breakpoints cleared")):Qi(a,a.f,S)||Qi(a,a.P,S)||Qi(a,a.K,S)||a.j("breakpoint missing: "+Y(a,S)):null!=S.H&&(Ji(a,S,A),"p"==D?a.Bb(a.f,S):
|
||||
"r"==D?a.Bb(a.P,S):"w"==D?a.Bb(a.K,S):a.j("unknown breakpoint command: "+D))}}}break;case "c":a.jb&&(a.jb.value="");break;case "d":a:{var vb,La=g[0],wa=g[1],Ma=g[2],vj=g[3];if("?"==wa){var wb="";for(vb in Gb)a.Pa[vb]&&(wb&&(wb+=","),wb+=vb);wb+=",state,symbols";a.j("dump memory commands:");a.j("\tda [a] dump info for address a");a.j("\tdb [a] [n] dump n bytes at address a");a.j("\tdw [a] [n] dump n words at address a");a.j("\tdd [a] [n] dump n dwords at address a");a.j("\tds [a] [n] dump n words at address a as JSON");
|
||||
a.j("\tdh [p] [n] dump n instructions from history position p");wb.length&&a.j("dump extension commands:\n\t"+wb)}else if("state"==wa){var dh=dj(a.B,!0);"console"==Ma?console.log(dh):(a.jb&&(a.jb.value=""),a.j(dh))}else if("symbols"==wa)for(var ae=0;ae<a.G.length;ae++){var be=a.G[ae],xb;for(xb in be.ka)if("."!=xb.charAt(0)){var eh=be.ka[xb].o;if(void 0!==eh){var fh=be.ka[xb].l;fh&&(xb=fh);a.j(M(a,eh)+" "+xb)}}}else{if("d"==La){for(vb in Gb)if(g[1]==vb){var gh=a.Pa[vb];gh?(g.shift(),g.shift(),gh(g)):
|
||||
a.j("no dump registered for "+wa);break a}wa||(La=a.Qb||"dw")}else a.Qb=La;if("dh"==La){var hh=wa,ih=Ma,jh="",kh=0,na=a.ca,xa=a.F;if(xa.length){var ha=+hh||a.sb,ec=+ih||10;isNaN(ha)?ha=ec:jh="more ";ha>xa.length&&(a.j("note: only "+xa.length+" available"),ha=xa.length);na-=ha;0>na&&(null==xa[xa.length-1].H?(ha=na+ha,na=0):na+=xa.length);var ce=[];"call"==ih&&(ec=1E5,ce=["CALL"]);for(void 0!==hh&&a.j(ha+" instructions earlier:");0<ec&&na!=a.ca;){var lh=xa[na++];if(null==lh.H)break;var fc=X(lh.H),wj=
|
||||
ha--,mh=Ui(a,fc,"history",wj);(!ce.length||0<=mh.indexOf(ce[0]))&&a.j(mh);fc.xc&&(na+=fc.xc,ec-=fc.xc,ha-=fc.xc);na>=xa.length&&(na=0);a.sb=ha;kh++;ec--}}kh||(a.j("no "+jh+"history available"),a.sb=void 0)}else{var ya=Fi(a,wa);if(ya)if("da"==La){var ia=a.b.jc(ya.H);a.j(ta("",19)+oa(ya.H,17,3)+" "+p(ya.H,8));1<ia.length&&(a.j(ta("",24)+oa(ia[1],13,3)+" "+p(ia[1],8)),a.j("+ "+Bi[ia[2]]+"PAR"+ia[3]+": "+oa(ia[4],22,3)+" "+p(ia[4],8)),a.j("& MMUMASK: "+oa(ia[5],22,3)+" "+p(ia[5],8)),a.j("= PHYSICAL: "+
|
||||
oa(ia[0],22,3)+" "+p(ia[0],8)))}else{var Xa=0,de="ds"==La;if(Ma){if("l"==Ma.charAt(0))Ma=Ma.substr(1)||vj,Xa=ri(a,Ma);else{var nh=Fi(a,Ma);nh&&(Xa=nh.H-ya.H)}0>Xa&&(Xa=0);65536<Xa&&(Xa=65536)}for(var Ya="dd"==La?4:"db"==La?1:2,Tc=Ya*Xa||128,ee=de?16:a.na,xj=(Tc+ee-1)/ee|0||1,Za="";xj--&&0<Tc;){for(var $a="",fe="",wa=Y(a,ya),Uc=ee,gc=0,hc=0;0<Uc&&0<Tc;){var yb=1,Vc=1==Ya?a.cb(ya,yb):a.ia(ya,yb=2),gc=gc|Vc<<(hc<<3),hc=hc+yb;hc==Ya&&(de?($a&&($a+=","),$a+="0x"+q(gc,2*Ya)):($a+=M(a,gc,Ya),$a+=1==Ya?
|
||||
9==Uc?"-":" ":" "),gc=hc=0);Uc-=yb;for(Tc-=yb;1==Ya&&yb--;)var ge=Vc&255,fe=fe+(32<=ge&&128>ge?String.fromCharCode(ge):"."),Vc=Vc>>8}Za&&(Za+="\n");Za=de?Za+($a+","):Za+(wa+": "+$a+(0==Uc?" "+fe:""))}Za&&a.j(Za);a.Ya=ya}}}}break;case "e":if("else"==g[0])break;var zb,he,ie,je,ke=g[0],le=g[1];"eb"==ke?(zb=1,he=255,ie=a.cb,je=a.ob):"e"==ke||"ew"==ke?(zb=2,he=65535,ie=a.ia,je=a.Sa):le=null;if(null==le)a.j("edit memory commands:"),a.j("\teb [a] [...] edit bytes at address a"),a.j("\tew [a] [...] edit words at address a");
|
||||
else{var Wc=Fi(a,le);if(Wc)for(var Xc=2;Xc<g.length;Xc++){var ic=pi(a,g[Xc]);if(void 0===ic){a.j("unrecognized value: "+g[Xc]);break}ic&~he&&a.j("warning: "+q(ic)+" exceeds "+zb+"-byte value");a.j("changing "+Y(a,Wc)+(I(a,16)?"":" from "+M(a,ie.call(a,Wc),zb))+" to "+M(a,ic,zb));je.call(a,Wc,ic,zb)}}break;case "g":a:{var oh=g[1],yj=b;if(void 0!==oh){var me=Fi(a,oh,!0);if(!me)break a;Ji(a,me,yj);a.Bb(a.f,me,!0)}a.pb(!0,c)}break;case "h":a.C.U?(c||a.j("halting"),a.ea()):ub(a,!0)||c||a.j("already halted");
|
||||
break;case "i":if("if"==g[0]){var ne;var jc=b.substr(2),jc=ua(jc);pi(a,jc)?(c||a.j("true: "+jc),ne=!0):(c||a.j("false: "+jc),ne=!1);ne||(d=!1);break}f=!0;break;case "k":var zj=g[0];if("?"==g[1])a.j("stack trace commands:"),a.j("\tk\tshow frame addresses"),a.j("\tks\tshow symbol information");else{var oe=0,pe=X(),kc=X(a.b.u[6]);for(a.j("stack trace for "+Y(a,kc));10>oe;){for(var ab=null,Aj=256;65536>kc.H>>>0;){pe.H=a.ia(kc,2);if(null==kc.H||!Aj--)break;if(!(pe.H&1)){for(var Bj=a,Yc=pe,ph=null,lc=Yc.H,
|
||||
qh=lc,qe=1;6>=qe&&lc;qe++){if(2<qe){Yc.H=lc;var Zc=Ui(Bj,Yc);if(0<=Zc.indexOf("JSR")){var rh=Zc.indexOf(" ");if(lc+(Zc.indexOf(" ",rh+1)-rh-1)/2==qh){ph=Zc;break}}}lc-=2}Yc.H=qh;if(ab=ph)break}}if(!ab||null==ab)break;var sh=null;if("ks"==zj){var th=ab.match(/[0-9A-F]+$/);th&&(sh=aj(a,th[0]))}ab=ta(ab,50)+" ;"+(sh||"stack="+Y(a,kc));a.j(ab);oe++}oe||a.j("no return addresses found")}break;case "l":if("ln"==g[0]){aj(a,g[1],!0);break}f=!0;break;case "m":a:{var za,Aa=null,J=g[1];"?"==J&&(J=void 0);if(void 0!==
|
||||
J){var Na=0;if("all"==J)Na=1879046143,J=null;else if("on"==J)Aa=!0,J=null;else if("off"==J)Aa=!1,J=null;else{"keys"==J&&(J="key");"kbd"==J&&(J="keyboard");for(za in Gb)if(J==za){Na=Gb[za];Aa=!!(a.ra&Na);break}if(!Na){a.j("unknown message category: "+J);break a}}if(Na)if("on"==g[2])a.ra|=Na,Aa=!0;else if("off"==g[2]&&(a.ra&=~Na,Aa=!1,1073741824==Na)){for(var uh=1E3<=a.Y.length?a.Y.length-1E3:0;uh<a.Y.length;)a.j(a.Y[uh++]);a.Y=[]}}var Cj=0,mc="";for(za in Gb)if(!J||J==za){var Dj=!!(a.ra&Gb[za]);if(null===
|
||||
Aa||Aa==Dj)mc&&(mc+=","),++Cj%10||(mc+="\n\t"),"key"==za&&(za="keys"),mc+=za}void 0===J&&a.j("message commands:\n\tm [category] [on|off]\tturn categories on/off");a.j((null!==Aa?Aa?"messages on: ":"messages off: ":"message categories:\n\t")+(mc||"none"));wi(a)}break;case "p":if("print"==g[0]){bj(a,b.substr(5));break}var Ej=g[0];if("?"==g[1])a.j("step commands:"),a.j("\tp\tstep over instruction"),a.j("\tpr\tstep over instruction with register update");else{var vh="pr"==Ej?1:0,wh=1+vh;if(a.N)a.j("step in progress");
|
||||
else{var $c=X(a.b.u[7]),nc=a.ia($c);3==nc||4==nc||34816==(nc&65280)||35072==(nc&65280)?(a.N=wh,Gi($c,2)):2048==(nc&65024)&&(Ui(a,$c),a.N=wh);a.N?(a.Bb(a.f,$c,!0),a.pb()||(a.B&&a.B.wb(),a.N=0)):cj(a,vh?"tr":"t")}}break;case "r":if("reset"==b){a.B&&a.B.reset();break}Mi(a,g);break;case "s":a:switch(g[1]){case "base":if(g[2]){var oc=+g[2];if(8==oc||10==oc||16==oc)a.na=oc;else{a.j("invalid base: "+oc);break}}a.j("default base: "+a.na);break;case "cs":var pc;void 0!==g[3]&&(pc=+g[3]);switch(g[2]){case "int":a.b.Wb=
|
||||
pc;break;case "start":a.b.dc=pc;break;case "stop":a.b.Xb=pc;break;default:a.j("unknown cs option");break a}void 0!==pc&&Dd(a.b);a.j("checksums "+(a.b.C.Sb?"enabled":"disabled"));break;case "sp":void 0!==g[2]&&(Hd(a.b,+g[2])||a.j("warning: using 1x multiplier, previous target not reached"));a.j("target speed: "+(a.b.Gb.toFixed(2)+"Mhz")+" ("+a.b.ub+"x)");break;default:if(g[1]){a.j("unknown option: "+g[1]);break}case "?":a.j("debugger options:"),a.j("\tbase #\t\tset default base to #"),a.j("\tcs int #\tset checksum cycle interval to #"),
|
||||
a.j("\tcs start #\tset checksum cycle start count to #"),a.j("\tcs stop #\tset checksum cycle stop count to #"),a.j("\tsp #\t\tset speed multiplier to #")}break;case "t":cj(a,g[0],g[1]);break;case "u":Ni(a,g[1],g[2],8);break;case "v":if("var"==g[0]){$i(a,b.substr(3))||(d=!1);break}if("ver"==g[0]){a.j("PDPjs version 1.30.6 ("+a.b.gb+",RELEASE"+(Db?",TYPEDARRAYS":",LONGARRAYS")+")");a.j(window?window.navigator.userAgent:"");break}f=!0;break;case "?":if(g[1]){bj(a,b.substr(1));break}var re="commands:",
|
||||
se;for(se in yi)re+="\n"+ta(se,9)+yi[se];He(a)||(re+="\nnote: history disabled if no exec breakpoints");a.j(re);break;default:f=!0}f&&(a.j("unknown command: "+b),d=!1)}}catch(xh){a.j("debugger error: "+(xh.stack||xh.message)),d=!1}return d}function Fd(a,b,c){b=ni(a,b,c);for(var d in b)if(!Ti(a,b[+d]))return!1;return!0}db(function(){for(var a=G(document,"pdp11","debugger"),b=0;b<a.length;b++){var c=a[b],d=F(c),d=new ui(d);sb(d,c)}});
|
||||
function ej(a,b,c){z.call(this,"Computer",a,ej,33554432);this.C.ma=!1;fj(this,b);this.L=Bd(this,"autoPower",a);this.g=0;this.Y=a.busWidth||a.buswidth;this.f=gj;this.I=null;this.F=this.S=!1;this.ba=Bd(this,"url")||"";(Math.random()+.1).toString(36);this.B=hj(this);if(this.b=rb("CPU",this.id)){this.i=rb("Debugger",this.id);this.w=new tc({id:this.rb+".bus",busWidth:this.Y},this.b,this.i);var d,e=pb(this.id);if((this.v=rb("Panel",this.id))&&this.v.jb)for(b=0;b<e.length;b++)d=e[b],d.M=this.v.M,d.j=this.v.j,
|
||||
d.jb=this.v.jb;this.j("PDPjs v1.30.6\nCopyright \u00a9 2012-2016 Jeff Parsons <Jeff@pcjs.org>\nLicense: GPL version 3 or later <http://gnu.org/licenses/gpl.html>");this.j("Portions adapted from the PDP-11/70 Emulator v1.4 by Paul Nankervis <paulnank@hotmail.com>");for(b=0;b<e.length;b++)d=e[b],d.Ia&&d.Ia(this,this.w,this.b,this.i);b=null;d=a.resume;void 0!==d&&(1<d.length?b=this.G=d:this.f=parseInt(d,10));var f;if(a=Bd(this,"state")||(f=!0,a.state))b=this.N=a,f||(this.F=!0,this.f=gj),this.f&&(this.K=
|
||||
new T(this,"1.30.6"),ij(this.K)?b=null:delete this.K);!b&&this.f&&(b=jj(this))&&(this.F=!0);if(b){var g=this;Ea(b,null,!0,function(a,b,c){c?(g.G=null,g.F=!1,g.M("Unable to load machine state from server (error "+c+(b?": "+ua(b):"")+")")):(g.I=b,g.S=!0);K(g)})}else K(this);this.D.power||(this.L=!0);!c&&this.L&&kj(this,this.ec)}else x("Unable to find CPU component")}E(ej);var gj=0;
|
||||
function fj(a,b){if(!b){var c;if("object"==typeof resources&&(c=resources.parms))try{b=eval("("+c+")")}catch(d){x(d.message+" ("+c+")")}}a.T=b}function Bd(a,b,c){var d=b.toLowerCase(),d=ib[b]||ib[d];void 0===d&&a.T&&(d=a.T[b]);void 0===d&&c&&(d=c[b]);void 0===d&&"object"==typeof resources&&resources[b]&&(d=b);return d}function kj(a,b,c){for(var d=pb(a.id),e=0;e<=d.length;e++){var f=e<d.length?d[e]:a;if(!Ab(f)){Ab(f,function(){kj(a,b,c)});return}}b.call(a,c)}
|
||||
function lj(a,b){var c=new T(a,"1.30.6","validate");if(ij(c)&&mj(c)){var d=c.get("timestamp"),e=b?b.get("timestamp"):"unknown";d!=e&&(a.M("Machine state may be out-of-date\n("+d+" vs. "+e+")\nCheck your browser's local storage limits"),b||c.clear())}}h=ej.prototype;
|
||||
h.ec=function(a){void 0===a&&(a=this.f||(this.I?1:gj));if(!this.g){this.g++;var b=!1,c=!1;this.P=!1;var d=this.K||new T(this,"1.30.6");if(-1==a)b=!0;else if(a>gj){if(ij(d,this.I)){this.A=new T(this,"1.30.6","failsafe");ij(this.A)&&(nj(this,d),a=2,oj(this.A));this.A.set("timestamp",Da());pj(this.A);var e=this.f&&!this.F;if(1==a||Ha("Click OK to restore the previous PDPjs machine state, or CANCEL to reset the machine.")){if(c=mj(d)){var f=d.get("code"),g=d.get("data");f&&("ok"==f?ij(d,g):("error"==
|
||||
f&&"no machine state"!=g?(this.M("Error: "+g),"unable to verify user"==g&&(Oa("user",""),this.B=null)):this.j(f+": "+g),oj(d),ij(d)?(c=mj(d),e=!0):c=!1))}e&&lj(this,c?d:null)}else 2==a&&d.clear()}else lj(this);delete this.I;delete this.K}e=pb(this.id);for(f=0;f<e.length;f++)g=e[f],g!==this&&g!=this.b&&(c=qj(this,g,d,b,c));b=[d,a,c];-1!=a?kj(this,this.Xc,b):this.Xc(b)}};
|
||||
function qj(a,b,c,d,e){if(!b.C.ma){b.C.ma=!0;if(b.La){var f=null;e&&((f=c.get(b.id))||(f=c.get(b.id.replace(/[a-z0-9]\./i,"."))));"string"===typeof f&&(f=null);!b.La(f,d)&&f&&(x("Unable to restore state for "+b.type),a.N&&!a.S?(c.clear(),a.f=gj,window&&window.location.reload()):a.P=!0,b.La(null),e=!1)}if(!d&&b.Nc)for(a=b.Nc.split("|"),c=0;c<a.length;c++)b.status(a[c])}return e}
|
||||
h.Xc=function(a){var b=a[0],c=0>a[1];a=a[2];this.ca=!0;this.C.ma=!0;var d=this.D.power;d&&(d.textContent="Shutdown");this.b&&(qj(this,this.b,b,c,a),this.ya(),this.b.ib());this.P&&(nj(this,b),b.clear());!c&&this.A&&(this.A.clear(),delete this.A);this.g=0};
|
||||
function nj(a,b){if(Ha("There may be a problem with your PDPjs machine.\n\nTo help us diagnose it, click OK to send this PDPjs machine state to http://www.pcjs.org.")){var c=a.B||"";b=b.toString();var d={app:"PDPjs",ver:"1.30.6"};d.url=a.ba;d.user=c;d.type="bug";d.data=b;Ea("http://www.pcjs.org/api/v1/report",d,!0)}}
|
||||
function dj(a,b,c){var d,e="none";if(a.g)return null;a.g--;var f=new T(a,"1.30.6"),g=new T(a,"1.30.6","validate"),k=Da();g.set("timestamp",k);f.set("timestamp",k);f.set("version","1.30.6");f.set("url",window?window.location.href:null);f.set("browser",window?window.navigator.userAgent:"");a.b&&a.b.Ka&&(c&&a.b.ea(),d=a.b.Ka(b,c),"object"===typeof d&&f.set(a.b.id,d),c&&(a.b.C.ma=!1,!1===d&&(e=null)));for(var k=pb(a.id),l=0;l<k.length;l++){var m=k[l];m.C.ma&&(m.Ka&&(d=m.Ka(b,c),"object"===typeof d&&f.set(m.id,
|
||||
d)),c&&(m.C.ma=!1,!1===d&&(e=null)))}e&&(c?(k=d=!1,b?(a.B&&rj(a,a.B,f.toString()),pj(g)&&pj(f)||(e=null,d=k=!0)):a.f&&(d=!0,k=3==a.f),d&&f.clear(k)):e=f.toString());c&&(a.C.ma=!1,b=a.D.power)&&(b.textContent="Power");a.g=0;return e}
|
||||
h.reset=function(){this.w&&this.w.reset&&(H(this,"Resetting "+this.w.type),this.w.reset());this.b&&this.b.reset&&(H(this,"Resetting "+this.b.type),this.b.reset());for(var a=pb(this.id),b=0;b<a.length;b++){var c=a[b];c!==this&&c!==this.w&&c!==this.b&&c.reset&&(H(this,"Resetting "+c.type),c.reset())}this.ya(-1)};h.start=function(a,b){for(var c=pb(this.id),d=0;d<c.length;d++){var e=c[d];"CPU"!=e.type&&e!==this&&e.start&&e.start(a,b)}this.ya(-1)};
|
||||
h.stop=function(a,b){for(var c=pb(this.id),d=0;d<c.length;d++){var e=c[d];"CPU"!=e.type&&e!==this&&e.stop&&e.stop(a,b)}this.ya(-1)};
|
||||
h.ya=function(a){if(this.b){var b=this.b,c=a||0,d=b.D.speed;d&&(0>=c||30<=(b.pc+=c))&&(d.textContent=b.C.U?b.za.toFixed(2)+"Mhz":"Stopped",b.pc=0)}if(this.v&&(b=this.v,a=a||0,b.F)){c=b.b.C.U;d=!!(b.b.J&8);if(0>=a||60<=(b.A+=a)){for(var e=0;e<b.b.u.length;e++)Ub(b,"R"+e,b.b.u[e]);e=gd(b.b);Ub(b,"PS",e);Ub(b,"NF",e&8?1:0,1);Ub(b,"ZF",e&4?1:0,1);Ub(b,"VF",e&2?1:0,1);Ub(b,"CF",e&1?1:0,1);b.A=0}cc(b,0<a&&c&&!d?b.b.Rb:b.Da);$b(b,b.Hb);a=b.b;a=a.ba?a.Ma&16?1:2:4;qc(b,"B22",a&1);qc(b,"B18",a&2);qc(b,"B16",
|
||||
a&4)}};
|
||||
k.za=function(a,b,c){var d=this;switch(b){case "power":return this.D[b]=c,c.onclick=function(){d.g||(d.C.la?ej(d,!1,!0):lj(d,d.ac))},!0;case "reset":return this.D[b]=c,c.onclick=function(){if(d.C.la&&!d.g)if(d.f&&!d.H){var a=Ha("Click OK to save changes to this PDPjs machine.\n\nWARNING: If you CANCEL, all disk changes will be discarded.");ej(d,a,!0);!a&&d.N?window&&window.location.reload():(a||(d.qc=!0),d.ac(hj),d.qc=!1)}else d.reset(),d.b&&d.b.fb()},!0;case "save":if(qa(Ga(),"pcjs.org"))c.parentNode.removeChild(c);else return this.D[b]=
|
||||
c,c.onclick=function(){var a=ij(d,!0);if(a){var b=!!(d.f&&!d.H||d.N),c=ej(d,b);b?sj(d,a,c):d.M("Resume disabled, machine state not saved")}},!0}return!1};
|
||||
function ij(a,b){var c=a.B;c||((c=Na("user"),void 0!==c)?!c&&b&&(b=null,window&&(b=window.prompt("Saving machine states on the pcjs.org server is currently unsupported.\n\nIf you're running your own server, enter your user ID below.","")),c=b)&&((c=tj(a,c))||a.M("The user ID is invalid.")):b&&a.M("Browser local storage is not available"));return c}
|
||||
function tj(a,b){a.B=null;b=Ea(Ga()+"/api/v1/user?req=verify&user="+b);var c=b[1];if(!b[0]&&c)try{b=eval("("+c+")"),b.code&&"ok"==b.code&&(Oa("user",b.data),a.B=b.data)}catch(d){x(d.message+" ("+c+")")}return a.B}function kj(a){var b=null;a.B&&(b=Ga()+"/api/v1/user?req=load&user="+a.B+"&state="+uj(a,"1.30.6"));return b}
|
||||
function sj(a,b,c){if(c){var d={req:"store"};d.user=b;d.state=uj(a,"1.30.6");d.data=c;b=Ea(Ga()+"/api/v1/user",d);d=b[0];if(b[1]){if(d){var e=d.indexOf("\n");0<e&&(d=d.substr(0,e));d.indexOf("Error: ")||(d=d.substr(7))}d='{"code":'+b[1]+',"data":"'+d+'"}'}b=JSON.parse(d);b&&"ok"==b.code?a.M("Machine state saved to server"):c&&(c=b&&b.data||"unable to save machine state",c="error"==b.code?"Error: "+c:"Error "+b.code+": "+c,a.M(c),Oa("user",""),a.B=null)}}
|
||||
function dh(a){var b;a=pb(a.id);for(var c=0;c<a.length;c++){var d=a[c];if(b)b==d&&(b=null);else if("RAM"==d.type)return d}return null}k.rb=function(a){if(this.gb){var b=0,c=0;!a&&window&&(b=window.scrollX,c=window.scrollY);this.gb.focus();!a&&window&&window.scrollTo(b,c)}};db(function(){for(var a=H(document,"pdp11-machine"),b=0;b<a.length;b++)for(var c=a[b],d=F(c),c=H(c,"pdp11","computer"),e=0;e<c.length;e++){var f=c[e],g=F(f),g=new fj(g,d,!0);G(g,f);g.L&&lj(g,g.ac)}});
|
||||
Ua.show.push(function(){for(var a=H(document,"pdp11","computer"),b=0;b<a.length;b++){var c=F(a[b]);(c=rb("Computer",c.id))&&c.da&&!c.C.la&&c.ac(-1)}});Ua.exit.push(function(){for(var a=H(document,"pdp11","computer"),b=0;b<a.length;b++){var c=F(a[b]);(c=rb("Computer",c.id))&&c.C.la&&ej(c,!(!c.f||c.H),!0)}});function U(a,b,c){this.id=a.id;this.key=uj(a,b,c);this.j=a.j;pj(this,a.pd)}function uj(a,b,c){a=a.id;if(b){var d=b.indexOf(".");0<d&&(a+=".v"+b.substr(0,d))}c&&(a+="."+c);return a}
|
||||
U.prototype={constructor:U,set:function(a,b){try{this[this.id][a]=b}catch(c){}},get:function(a){return this[this.id][a]||null},value:function(){return this[this.id]},data:function(){return this[this.id]},toString:function(){var a=this[this.id];return"string"==typeof a?a:JSON.stringify(a)},clear:function(a){pj(this);var b=[];try{for(var c=0,d=window.localStorage.length;c<d;c++)b.push(window.localStorage.key(c))}catch(e){}for(c=0;c<b.length;c++)if((d=b[c])&&(a||d.substr(0,this.key.length)==this.key)){try{window.localStorage.removeItem(d)}catch(e){}b.splice(c,
|
||||
1);c=0}}};function pj(a,b){a[a.id]={};b&&a.set("parms",b);a.b=!1}function qj(a){var b=!0;if(Ma()){var c=JSON.stringify(a[a.id]);Oa(a.key,c)||(x("Unable to store "+c.length+" bytes in browser local storage"),b=!1)}return b}function nj(a){var b=!0;try{a[a.id]=JSON.parse(a[a.id])}catch(c){x(c.message||c),b=!1}return b}function jj(a,b){return b?(a[a.id]=b,a.b=!0):a.b?!0:Ma()&&(b=Na(a.key))?(a[a.id]=b,a.b=!0):!1}var vj=0;
|
||||
function Gj(a,b,c,d,e,f){e("Loading "+a+"...");Ea(a,null,!0,function(g,h,l){l?(h||(h="unable to load "+a+" ("+l+")"),f(h,null)):Hj(h,a,b,c,d,e,f)})}
|
||||
function Hj(a,b,c,d,e,f,g){function h(a,f){if(f)g(f,null);else{c&&(ob(c,b,a),(f=b)&&0>f.indexOf("/")&&"/"==window.location.pathname.slice(-1)&&(f=window.location.pathname+f),d?"}"==d.slice(-1)?(d=d.slice(0,-1),1<d.length&&(d+=",")):d='{state:"'+d+'",':d="{",d+='url:"'+f+'"}',"object"==typeof resources&&(f=null),a=a.replace(/(<machine[^>]*\sid=)(['"]).*?\2/,"$1$2"+c+"$2"+(d?" parms='"+d+"'":"")+(f?' url="'+f+'"':"")));e||(a=a.replace(/(<xsl:variable name="APPNAME">).*?(<\/xsl:variable>)/,"$1PDPjs$2"),
|
||||
a=a.replace(/(<xsl:variable name="APPCLASS">).*?(<\/xsl:variable>)/,"$1pdp11$2"));f=null;if("<"==a.charAt(0))try{e||(a=a.replace(/<!DOCTYPE(.|[\r\n])*]>\s*/g,"")),window.ActiveXObject||"ActiveXObject"in window?(f=new window.ActiveXObject("Microsoft.XMLDOM"),f.async=!1,f.loadXML(a)):f=(new window.DOMParser).parseFromString(a,"text/xml")}catch(n){f=null,a=n.message}else a="unrecognized XML: "+(255<a.length?a.substr(0,255)+"...":a);g(a,f)}}a?e?Ij(a,f,h):h(a,null):g("no data"+(b?" for file: "+b:""),null)}
|
||||
function Ij(a,b,c){var d;if(d=/<([a-z]+)\s+ref="(.*?)"(.*?)\/>/g.exec(a)){var e=d[2];b("Loading "+e+"...");Ea(e,null,!0,function(f,g,h){if(h||!g)c(a,"unable to resolve XML reference: "+d[0]+" ("+h+")");else{if(f=d[3])if(h=g.match(new RegExp("<"+d[1]+"[^>]*>"))){for(var l=h[0],m,n=/( [a-z]+=)(['"])(.*?)\2/g;m=n.exec(f);)l=0>l.indexOf(m[1])?l.replace(">",m[0]+">"):l.replace(new RegExp(m[1]+"(['\"])(.*?)\\1"),m[0]);h[0]!=l&&(g=g.replace(h[0],l))}else{c(a,"missing <"+d[1]+"> in "+e);return}g=g.replace(/<\?xml[^>]*>[\r\n]*/,
|
||||
"");a=a.replace(d[0],g);Ij(a,b,c)}})}else c(a,null)}
|
||||
function Jj(a,b,c,d){function e(a){if(void 0===h){var b=g&&H(g,"machine-warning");h=b&&b[0]||g}h&&(h.innerHTML=sa(a))}function f(a){e("Error: "+a);l&&(--vj||fb(!0));l=!1}var g,h,l=!0;vj++;nb[a]={};try{if(g=document.getElementById(a)){var m;if("object"==typeof resources&&(m=resources.css)){var n=document.head||document.getElementsByTagName("head")[0],r=document.createElement("style");r.type="text/css";r.styleSheet?r.styleSheet.cssText=m:r.appendChild(document.createTextNode(m));n.appendChild(r)}c||
|
||||
(c="/versions/pdpjs/1.30.6/components.xsl");m=function(d,h){h?Gj(c,null,null,!1,e,function(d,l){l?(ob(a,c,d),e("Processing "+b+"..."),window.ActiveXObject||"ActiveXObject"in window?(l=h.transformNode(l))?(g.outerHTML=l,--vj||fb(!0)):f("transformNodeToObject failed"):document.implementation&&document.implementation.createDocument?(d=new XSLTProcessor,d.importStylesheet(l),(l=d.transformToFragment(h,document))?g.parentNode?(g.parentNode.replaceChild(l,g),--vj||fb(!0)):f("invalid machine element: "+
|
||||
a):f("transformToFragment failed")):f("unable to transform XML: unsupported browser")):f(d)}):f(d)};"<"!=b.charAt(0)?Gj(b,a,d,!0,e,m):Hj(b,null,a,d,!1,e,m)}else f("missing machine element: "+a)}catch(u){f(u.message)}return l}window.embedPDP11=function(a,b,c,d){fb(!1);return Jj(a,b,c,d)};window.enableEvents=fb;window.sendEvent=gb;})();//# sourceMappingURL=/tmp/pdpjs/1.30.6/pdp11-dbg.map
|
||||
h.xa=function(a,b,c){var d=this;switch(b){case "power":return this.D[b]=c,c.onclick=function(){d.g||(d.C.ma?dj(d,!1,!0):kj(d,d.ec))},!0;case "reset":return this.D[b]=c,c.onclick=function(){if(d.C.ma&&!d.g)if(d.f&&!d.G){var a=Ha("Click OK to save changes to this PDPjs machine.\n\nWARNING: If you CANCEL, all disk changes will be discarded.");dj(d,a,!0);!a&&d.N?window&&window.location.reload():(a||(d.yc=!0),d.ec(gj),d.yc=!1)}else d.reset(),d.b&&d.b.ib()},!0;case "save":if(qa(Ga(),"pcjs.org"))c.parentNode.removeChild(c);else return this.D[b]=
|
||||
c,c.onclick=function(){var a=hj(d,!0);if(a){var b=!!(d.f&&!d.G||d.N),c=dj(d,b);b?rj(d,a,c):d.M("Resume disabled, machine state not saved")}},!0}return!1};
|
||||
function hj(a,b){var c=a.B;c||((c=Ka("user"),void 0!==c)?!c&&b&&(b=null,window&&(b=window.prompt("Saving machine states on the pcjs.org server is currently unsupported.\n\nIf you're running your own server, enter your user ID below.","")),c=b)&&((c=sj(a,c))||a.M("The user ID is invalid.")):b&&a.M("Browser local storage is not available"));return c}
|
||||
function sj(a,b){a.B=null;b=Ea(Ga()+"/api/v1/user?req=verify&user="+b);var c=b[1];if(!b[0]&&c)try{b=eval("("+c+")"),b.code&&"ok"==b.code&&(Oa("user",b.data),a.B=b.data)}catch(d){x(d.message+" ("+c+")")}return a.B}function jj(a){var b=null;a.B&&(b=Ga()+"/api/v1/user?req=load&user="+a.B+"&state="+tj(a,"1.30.6"));return b}
|
||||
function rj(a,b,c){if(c){var d={req:"store"};d.user=b;d.state=tj(a,"1.30.6");d.data=c;b=Ea(Ga()+"/api/v1/user",d);d=b[0];if(b[1]){if(d){var e=d.indexOf("\n");0<e&&(d=d.substr(0,e));d.indexOf("Error: ")||(d=d.substr(7))}d='{"code":'+b[1]+',"data":"'+d+'"}'}b=JSON.parse(d);b&&"ok"==b.code?a.M("Machine state saved to server"):c&&(c=b&&b.data||"unable to save machine state",c="error"==b.code?"Error: "+c:"Error "+b.code+": "+c,a.M(c),Oa("user",""),a.B=null)}}
|
||||
function bh(a){var b;a=pb(a.id);for(var c=0;c<a.length;c++){var d=a[c];if(b)b==d&&(b=null);else if("RAM"==d.type)return d}return null}h.wb=function(a){if(this.jb){var b=0,c=0;!a&&window&&(b=window.scrollX,c=window.scrollY);this.jb.focus();!a&&window&&window.scrollTo(b,c)}};db(function(){for(var a=G(document,"pdp11-machine"),b=0;b<a.length;b++)for(var c=a[b],d=F(c),c=G(c,"pdp11","computer"),e=0;e<c.length;e++){var f=c[e],g=F(f),g=new ej(g,d,!0);sb(g,f);g.L&&kj(g,g.ec)}});
|
||||
Ta.show.push(function(){for(var a=G(document,"pdp11","computer"),b=0;b<a.length;b++){var c=F(a[b]);(c=rb("Computer",c.id))&&c.ca&&!c.C.ma&&c.ec(-1)}});Ta.exit.push(function(){for(var a=G(document,"pdp11","computer"),b=0;b<a.length;b++){var c=F(a[b]);(c=rb("Computer",c.id))&&c.C.ma&&dj(c,!(!c.f||c.G),!0)}});function T(a,b,c){this.id=a.id;this.key=tj(a,b,c);this.i=a.i;oj(this,a.Fd)}function tj(a,b,c){a=a.id;if(b){var d=b.indexOf(".");0<d&&(a+=".v"+b.substr(0,d))}c&&(a+="."+c);return a}
|
||||
T.prototype={constructor:T,set:function(a,b){try{this[this.id][a]=b}catch(c){}},get:function(a){return this[this.id][a]||null},value:function(){return this[this.id]},data:function(){return this[this.id]},toString:function(){var a=this[this.id];return"string"==typeof a?a:JSON.stringify(a)},clear:function(a){oj(this);var b=[];try{for(var c=0,d=window.localStorage.length;c<d;c++)b.push(window.localStorage.key(c))}catch(e){}for(c=0;c<b.length;c++)if((d=b[c])&&(a||d.substr(0,this.key.length)==this.key)){try{window.localStorage.removeItem(d)}catch(e){}b.splice(c,
|
||||
1);c=0}}};function oj(a,b){a[a.id]={};b&&a.set("parms",b);a.b=!1}function pj(a){var b=!0;if(Ja()){var c=JSON.stringify(a[a.id]);Oa(a.key,c)||(x("Unable to store "+c.length+" bytes in browser local storage"),b=!1)}return b}function mj(a){var b=!0;try{a[a.id]=JSON.parse(a[a.id])}catch(c){x(c.message||c),b=!1}return b}function ij(a,b){return b?(a[a.id]=b,a.b=!0):a.b?!0:Ja()&&(b=Ka(a.key))?(a[a.id]=b,a.b=!0):!1}var uj=0;
|
||||
function Fj(a,b,c,d,e,f){e("Loading "+a+"...");Ea(a,null,!0,function(g,k,l){l?(k||(k="unable to load "+a+" ("+l+")"),f(k,null)):Gj(k,a,b,c,d,e,f)})}
|
||||
function Gj(a,b,c,d,e,f,g){function k(a,f){if(f)g(f,null);else{c&&(ob(c,b,a),(f=b)&&0>f.indexOf("/")&&"/"==window.location.pathname.slice(-1)&&(f=window.location.pathname+f),d?"}"==d.slice(-1)?(d=d.slice(0,-1),1<d.length&&(d+=",")):d='{state:"'+d+'",':d="{",d+='url:"'+f+'"}',"object"==typeof resources&&(f=null),a=a.replace(/(<machine[^>]*\sid=)(['"]).*?\2/,"$1$2"+c+"$2"+(d?" parms='"+d+"'":"")+(f?' url="'+f+'"':"")));e||(a=a.replace(/(<xsl:variable name="APPNAME">).*?(<\/xsl:variable>)/,"$1PDPjs$2"),
|
||||
a=a.replace(/(<xsl:variable name="APPCLASS">).*?(<\/xsl:variable>)/,"$1pdp11$2"));f=null;if("<"==a.charAt(0))try{e||(a=a.replace(/<!DOCTYPE(.|[\r\n])*]>\s*/g,"")),window.ActiveXObject||"ActiveXObject"in window?(f=new window.ActiveXObject("Microsoft.XMLDOM"),f.async=!1,f.loadXML(a)):f=(new window.DOMParser).parseFromString(a,"text/xml")}catch(n){f=null,a=n.message}else a="unrecognized XML: "+(255<a.length?a.substr(0,255)+"...":a);g(a,f)}}a?e?Hj(a,f,k):k(a,null):g("no data"+(b?" for file: "+b:""),null)}
|
||||
function Hj(a,b,c){var d;if(d=/<([a-z]+)\s+ref="(.*?)"(.*?)\/>/g.exec(a)){var e=d[2];b("Loading "+e+"...");Ea(e,null,!0,function(f,g,k){if(k||!g)c(a,"unable to resolve XML reference: "+d[0]+" ("+k+")");else{if(f=d[3])if(k=g.match(new RegExp("<"+d[1]+"[^>]*>"))){for(var l=k[0],m,n=/( [a-z]+=)(['"])(.*?)\2/g;m=n.exec(f);)l=0>l.indexOf(m[1])?l.replace(">",m[0]+">"):l.replace(new RegExp(m[1]+"(['\"])(.*?)\\1"),m[0]);k[0]!=l&&(g=g.replace(k[0],l))}else{c(a,"missing <"+d[1]+"> in "+e);return}g=g.replace(/<\?xml[^>]*>[\r\n]*/,
|
||||
"");a=a.replace(d[0],g);Hj(a,b,c)}})}else c(a,null)}
|
||||
function Ij(a,b,c,d){function e(a){if(void 0===k){var b=g&&G(g,"machine-warning");k=b&&b[0]||g}k&&(k.innerHTML=sa(a))}function f(a){e("Error: "+a);l&&(--uj||fb(!0));l=!1}var g,k,l=!0;uj++;nb[a]={};try{if(g=document.getElementById(a)){var m;if("object"==typeof resources&&(m=resources.css)){var n=document.head||document.getElementsByTagName("head")[0],r=document.createElement("style");r.type="text/css";r.styleSheet?r.styleSheet.cssText=m:r.appendChild(document.createTextNode(m));n.appendChild(r)}c||
|
||||
(c="/versions/pdpjs/1.30.6/components.xsl");m=function(d,k){k?Fj(c,null,null,!1,e,function(d,l){l?(ob(a,c,d),e("Processing "+b+"..."),window.ActiveXObject||"ActiveXObject"in window?(l=k.transformNode(l))?(g.outerHTML=l,--uj||fb(!0)):f("transformNodeToObject failed"):document.implementation&&document.implementation.createDocument?(d=new XSLTProcessor,d.importStylesheet(l),(l=d.transformToFragment(k,document))?g.parentNode?(g.parentNode.replaceChild(l,g),--uj||fb(!0)):f("invalid machine element: "+
|
||||
a):f("transformToFragment failed")):f("unable to transform XML: unsupported browser")):f(d)}):f(d)};"<"!=b.charAt(0)?Fj(b,a,d,!0,e,m):Gj(b,null,a,d,!1,e,m)}else f("missing machine element: "+a)}catch(u){f(u.message)}return l}window.embedPDP11=function(a,b,c,d){fb(!1);return Ij(a,b,c,d)};window.enableEvents=fb;window.sendEvent=gb;})();//# sourceMappingURL=/tmp/pdpjs/1.30.6/pdp11-dbg.map
|
||||
|
|
|
|||
|
|
@ -34,9 +34,9 @@
|
|||
*/
|
||||
for(var h,aa="function"==typeof Object.defineProperties?Object.defineProperty:function(a,b,c){if(c.get||c.set)throw new TypeError("ES3 does not support getters and setters.");a!=Array.prototype&&a!=Object.prototype&&(a[b]=c.value)},ba="undefined"!=typeof window&&window===this?this:"undefined"!=typeof global?global:this,ca=["Math","log2"],da=0;da<ca.length-1;da++){var ea=ca[da];ea in ba||(ba[ea]={});ba=ba[ea]}var fa=ca[ca.length-1],ga=ba[fa],ha=ga?ga:function(a){return Math.log(a)/Math.LN2};
|
||||
ha!=ga&&null!=ha&&aa(ba,fa,{configurable:!0,writable:!0,value:ha});
|
||||
var ia={163840:[40,1,8,,254],184320:[40,1,9,,252],327680:[40,2,8,,255],368640:[40,2,9,,253],737280:[80,2,9,,249],1228800:[80,2,15,,249],1474560:[80,2,18,,240],2949120:[80,2,36,,240],21368320:[615,4,17],2494464:[203,2,12,512],5242880:[256,2,40,256],10485760:[512,2,40,256]},n={Xe:0,qc:1,Ze:2,$e:3,af:4,bf:5,cf:6,df:7,Xb:8,ef:9,rc:10,ff:11,gf:12,sc:13,hf:14,jf:15,kf:16,lf:17,mf:18,nf:19,pf:20,qf:21,rf:22,sf:23,tf:24,uf:25,vf:26," ":32,"!":33,'"':34,"#":35,$:36,"%":37,"&":38,"'":39,"(":40,")":41,"*":42,
|
||||
"+":43,",":44,"-":45,".":46,"/":47,0:48,1:49,2:50,3:51,4:52,5:53,6:54,7:55,8:56,9:57,":":58,";":59,"<":60,"=":61,">":62,"?":63,"@":64,Vb:65,We:66,Ye:67,wf:68,E:69,xf:70,yf:71,zf:72,Af:73,Bf:74,Cf:75,Df:76,Ef:77,Ff:78,Gf:79,Hf:80,Q:81,If:82,Jf:83,Kf:84,Lf:85,Mf:86,Nf:87,Of:88,Pf:89,Ac:90,"[":91,"\\":92,"]":93,"^":94,_:95,"`":96,Qf:97,Rf:98,Sf:99,d:100,e:101,Uf:102,Vf:103,Wf:104,Xf:105,$f:106,k:107,ag:108,bg:109,n:110,cg:111,p:112,q:113,r:114,dg:115,t:116,eg:117,fg:118,gg:119,x:120,y:121,z:122,"{":123,
|
||||
"|":124,"}":125,"~":126,tc:127};
|
||||
var ia={163840:[40,1,8,,254],184320:[40,1,9,,252],327680:[40,2,8,,255],368640:[40,2,9,,253],737280:[80,2,9,,249],1228800:[80,2,15,,249],1474560:[80,2,18,,240],2949120:[80,2,36,,240],21368320:[615,4,17],2494464:[203,2,12,512],5242880:[256,2,40,256],10485760:[512,2,40,256]},n={cf:0,wc:1,ef:2,ff:3,gf:4,hf:5,jf:6,kf:7,dc:8,lf:9,xc:10,mf:11,nf:12,yc:13,pf:14,qf:15,rf:16,sf:17,tf:18,uf:19,vf:20,wf:21,xf:22,yf:23,zf:24,Af:25,Bf:26," ":32,"!":33,'"':34,"#":35,$:36,"%":37,"&":38,"'":39,"(":40,")":41,"*":42,
|
||||
"+":43,",":44,"-":45,".":46,"/":47,0:48,1:49,2:50,3:51,4:52,5:53,6:54,7:55,8:56,9:57,":":58,";":59,"<":60,"=":61,">":62,"?":63,"@":64,ac:65,bf:66,df:67,Cf:68,E:69,Df:70,Ef:71,Ff:72,Gf:73,Hf:74,If:75,Jf:76,Kf:77,Lf:78,Mf:79,Nf:80,Q:81,Of:82,Pf:83,Qf:84,Rf:85,Sf:86,Tf:87,Uf:88,Vf:89,Gc:90,"[":91,"\\":92,"]":93,"^":94,_:95,"`":96,Wf:97,Xf:98,Yf:99,d:100,e:101,$f:102,ag:103,bg:104,cg:105,fg:106,k:107,gg:108,hg:109,n:110,ig:111,p:112,q:113,r:114,jg:115,t:116,kg:117,lg:118,mg:119,x:120,y:121,z:122,"{":123,
|
||||
"|":124,"}":125,"~":126,zc:127};
|
||||
function q(a){var b=10,c;if(a){b||(b=10);var d=a.charAt(0),e=0<a.indexOf(",");e&&(a=a.replace(/,/g,""));"#"==d?(b=8,d=null):"$"==d&&(b=16,d=null);null==d?a=a.substr(1):("0"==d&&(d=a.charAt(1),"b"==d&&e&&(b=2,d=null),"o"==d?(b=8,d=null):"x"==d&&(b=16,d=null)),null==d?a=a.substr(2):(d=a.charAt(a.length-1).toLowerCase(),"y"==d?(b=2,d=null):"."==d?(b=10,d=null):"h"==d&&(b=16,d=null),null==d&&(a=a.substr(0,a.length-1))));var f,d=a;((e=b)&&10!=e?16==e?d.match(/^[0-9a-f]+$/i):8==e?d.match(/^[0-7]+$/):2==
|
||||
e&&d.match(/^[01]+$/):d.match(/^[0-9]+$/))&&!isNaN(f=parseInt(a,b))&&(c=f|0)}return c}function ja(a,b){var c="";b?11<b&&(b=11):b=a&-65536?11:6;if(null==a||isNaN(a))for(;0<b--;)c="?"+c;else for(;0<b--;)c=String.fromCharCode((a&7)+48)+c,a>>=3;return""+c}function ka(a,b,c){var d="";b?8<b&&(b=8):b=a&-65536?8:4;if(null==a||isNaN(a))for(;0<b--;)d="?"+d;else for(;0<b--;){var e=a&15,e=e+(0<=e&&9>=e?48:55),d=String.fromCharCode(e)+d;a>>=4}return(c?"0x":"")+d}
|
||||
function r(a,b){var c=a,d=a.lastIndexOf("/");0<=d&&(c=a.substr(d+1));d=c.indexOf("&");0<d&&(c=c.substr(0,d));b&&(d=c.lastIndexOf("."),0<d&&(c=c.substring(0,d)));return c}function la(a){var b="",c=a.lastIndexOf(".");0<=c&&(b=a.substr(c+1).toLowerCase());return b}function ma(a,b){return-1!==a.indexOf(b,a.length-b.length)}var na={"&":"&","<":"<",">":">",'"':""","'":"'"};function oa(a){return a.replace(/[&<>"']/g,function(a){return na[a]})}
|
||||
|
|
@ -46,230 +46,230 @@ function u(a,b,c,d){var e=0,f=null,g=null;if("object"==typeof resources&&(f=reso
|
|||
typeof b){var l="",m;for(m in b)b.hasOwnProperty(m)&&(l&&(l+="&"),l+=m+"="+encodeURIComponent(b[m]));l=l.replace(/%20/g,"+");k.open("POST",a,!!c);k.setRequestHeader("Content-type","application/x-www-form-urlencoded");k.send(l)}else k.open("GET",a,!!c),"bytes"==b&&k.overrideMimeType("text/plain; charset=x-user-defined"),k.send();c||(f=k.responseText,200!=k.status&&(e=k.status||-1),d&&d(a,f,e),g=[f,e]);return g}
|
||||
function ta(a,b){var c,d={M:null,da:null,pa:null,oa:null};if("["==b.charAt(0)||"{"==b.charAt(0))try{var e,f,g;if("<"==b.substr(0,1))throw Error(b);g=0>b.indexOf("0x")&&'["'!=b.substr(0,2)?JSON.parse(b.replace(/([a-z]+):/gm,'"$1":').replace(/\/\/[^\n]*/gm,"")):eval("("+b+")");d.pa=g.load;d.oa=g.exec;if(e=g.bytes)d.M=e;else if(e=g.words)for(d.M=Array(2*e.length),f=c=0;c<e.length;c++)d.M[f++]=e[c]&255,d.M[f++]=e[c]>>8&255;else if(e=g.data)for(d.M=Array(4*e.length),f=c=0;c<e.length;c++)d.M[f++]=e[c]&
|
||||
255,d.M[f++]=e[c]>>8&255,d.M[f++]=e[c]>>16&255,d.M[f++]=e[c]>>24&255;else d.M=g;d.da=g.symbols;d.M.length?1==d.M.length&&(x(d.M[0]),d=null):(x("Empty resource: "+a),d=null)}catch(k){x("Resource data error ("+a+"): "+k.message),d=null}else{e=[];b=b.replace(/\n/gm," ").replace(/ +$/,"").split(" ");for(c=0;c<b.length;c++){f=parseInt(b[c],16);if(isNaN(f)){x("Resource data error ("+a+"): invalid hex byte ("+b[c]+")");break}e.push(f&255)}c==b.length&&(d.M=e)}return d}
|
||||
function ua(){return"http://"+(window?window.location.host:"www.pcjs.org")}function x(a){window&&window.alert(a)}function va(a){var b=!1;window&&(b=window.confirm(a));return b}var wa=null;function ya(){if(null==wa){var a=!1;if(window)try{window.localStorage.setItem("PCjs.localStorage","PCjs.localStorage"),a="PCjs.localStorage"==window.localStorage.getItem("PCjs.localStorage"),window.localStorage.removeItem("PCjs.localStorage")}catch(b){a=!1}wa=a}return wa}
|
||||
function ua(){return"http://"+(window?window.location.host:"www.pcjs.org")}function x(a){window&&window.alert(a)}function va(a){var b=!1;window&&(b=window.confirm(a));return b}var wa=null;function xa(){if(null==wa){var a=!1;if(window)try{window.localStorage.setItem("PCjs.localStorage","PCjs.localStorage"),a="PCjs.localStorage"==window.localStorage.getItem("PCjs.localStorage"),window.localStorage.removeItem("PCjs.localStorage")}catch(b){a=!1}wa=a}return wa}
|
||||
function za(a){var b;if(window)try{b=window.localStorage.getItem(a)}catch(c){}return b}function Aa(a,b){try{return window.localStorage.setItem(a,b),!0}catch(c){}return!1}function Ba(a){if(window){var b=window?window.navigator.userAgent:"";return"iOS"==a&&b.match(/(iPod|iPhone|iPad)/)&&b.match(/AppleWebKit/)||"MSIE"==a&&b.match(/(MSIE|Trident)/)||0<=b.indexOf(a)?!0:!1}return!1}
|
||||
function Ca(a,b){var c=null;a="data:application/octet-stream;base64,"+a;b&&(c=document.createElement("a"),"string"!=typeof c.download&&(c=null));c?(c.href=a,c.download=b,document.body.appendChild(c),c.click(),document.body.removeChild(c),b="Check your Downloads folder for "+b+"."):(window.open(a),b="Check your browser for a new window/tab containing the requested data"+(b?" ("+b+")":"")+".");return b}var Da={init:[],show:[],exit:[]},Ea=!1,Fa=!1,Ga=!0;
|
||||
function Ha(a,b){if(window){var c=window[a];window[a]="function"!==typeof c?b:function(){c&&c();b()}}}function Ia(a){Da.init.push(a)}function Ja(a){if(Ga)try{for(var b=0;b<a.length;b++)a[b]()}catch(c){x(""+("An unexpected exception occurred:\n\n"+c.message+"\n\nPlease send this information to support@pcjs.org. Thanks."))}}function Ka(a){!Ga&&a?(Ga=!0,Ea&&La("init"),Fa&&La("show")):Ga=a}function La(a){Da[a]&&Ja(Da[a])}Ha("onload",function(){Ea=!0;Ja(Da.init)});Ha("onpageshow",function(){Fa=!0;Ja(Da.show)});
|
||||
Ha(Ba("Opera")||Ba("iOS")?"onunload":"onbeforeunload",function(){Ja(Da.exit)});function y(a,b,c,d){this.type=a;b||(b={id:"",name:""});this.id=b.id||"";this.name=b.name;this.cc=b.comment;this.Xc=b;b=this.id.indexOf(".");0>b?this.Aa=this.id:(this.Ba=this.id.substr(0,b),this.Aa=this.id.substr(b+1));this[a]=c;this.m={ready:!1,Ka:!1,Ib:!1,R:!1,error:!1};this.Ab=null;this.m.error=!1;this.j={};this.D=null;this.Mc=d||0;z.push(this)}var Ma=void 0,Na={};
|
||||
Ha(Ba("Opera")||Ba("iOS")?"onunload":"onbeforeunload",function(){Ja(Da.exit)});function y(a,b,c,d){this.type=a;b||(b={id:"",name:""});this.id=b.id||"";this.name=b.name;this.jc=b.comment;this.cd=b;b=this.id.indexOf(".");0>b?this.Aa=this.id:(this.Ba=this.id.substr(0,b),this.Aa=this.id.substr(b+1));this[a]=c;this.m={ready:!1,Oa:!1,Ob:!1,R:!1,error:!1};this.Fb=null;this.m.error=!1;this.j={};this.D=null;this.Sc=d||0;z.push(this)}var Ma=void 0,Na={};
|
||||
if(window){Ma||(Ma=window.location.search.substr(1));for(var Oa,Pa=/\+/g,Qa=/([^&=]+)=?([^&]*)/g;Oa=Qa.exec(Ma);)Na[decodeURIComponent(Oa[1].replace(Pa," "))]=decodeURIComponent(Oa[2].replace(Pa," "))}function Ra(a){function b(){}if(window){if(!a)throw new TypeError;if(Object.create)return Object.create(a);var c=typeof a;if("object"!==c&&"function"!==c)throw new TypeError;}b.prototype=a;return new b}
|
||||
function A(a,b){b||(b=y);a.prototype=Ra(b.prototype);a.prototype.constructor=a;a.prototype.parent=b.prototype}if(window){window.PCjs||(window.PCjs={});var Sa=window.PCjs.Machines||(window.PCjs.Machines={}),z=window.PCjs.Components||(window.PCjs.Components=[])}else Sa={},z=[];function Ta(a,b,c){Sa[a]&&b&&(Sa[a][b]=c)}function B(a){var b,c=[];a&&(a=0<(b=a.indexOf("."))?a.substr(0,b+1):"");for(b=0;b<z.length;b++){var d=z[b];a&&d.id.indexOf(a)||c.push(d)}return c}
|
||||
function Ua(a){if(void 0!==a){var b;for(b=0;b<z.length;b++)if(z[b].id===a)return z[b]}return null}function Va(a,b){var c;if(void 0!==a){var d;b&&(b=0<(d=b.indexOf("."))?b.substr(0,d+1):"");for(d=0;d<z.length;d++)if(c)c==z[d]&&(c=null);else if(!(a!=z[d].type||b&&z[d].id.indexOf(b)))return z[d]}return null}function C(a){var b=null;if(a=a.getAttribute("data-value"))try{b=eval("("+a+")")}catch(c){x(c.message+" ("+a+")")}return b}
|
||||
function D(a,b){b=E(b.parentNode,"pdp11-control");for(var c=0;c<b.length;c++)for(var d=b[c].childNodes,e=0;e<d.length;e++){var f=d[e];if(1===f.nodeType){var g=f.getAttribute("class");if(g)for(var k=g.split(" "),l=0;l<k.length;l++)switch(g=k[l],g){case "pdp11-binding":(g=C(f))&&g.binding&&a.ba(g.type,g.binding,f,g.value),l=k.length}}}}
|
||||
function E(a,b,c){c&&(b+="-"+c+"-object");if(a.getElementsByClassName)return a.getElementsByClassName(b);var d;c=[];a=a.getElementsByTagName("*");var e=new RegExp("(^| )"+b+"( |$)");b=0;for(d=a.length;b<d;b++)e.test(a[b].className)&&c.push(a[b]);return c}
|
||||
y.prototype={constructor:y,parent:null,toString:function(){return this.name?this.name:this.id||this.type},ba:function(a,b,c){switch(b){case "clear":return this.j[b]||(this.j[b]=c,c.onclick=function(a){return function(){a.j.print&&(a.j.print.value="")}}(this)),!0;case "print":return this.j[b]||(this.lb=this.j[b]=c,c.value="",this.V=function(a){return function(b,c){8192<a.value.length&&(a.value=a.value.substr(a.value.length-4096));a.value+=(void 0!==c?c+": ":"")+(b||"")+"\n";a.scrollTop=a.scrollHeight}}(c),
|
||||
this.B=function(a){this.V(a,this.Aa)}),!0;default:return!1}},log:function(){},V:function(){},status:function(a){this.V(this.Aa+": "+a)},B:function(a,b,c){c=c||this.type;b||x((c?c+": ":"")+a)},ka:function(){return this.m.R=!0},ja:function(a,b){b&&(this.m.R=!1);return!0}};function Wa(a,b){a.m.Ib?(a.m.Ka=!1,a.m.Ib=!1):a.m.error?a.V(a.toString()+" error"):a.m.Ka=b}function F(a,b){a.m.error||(a.m.ready=!1!==b,a.m.ready&&(b=a.Ab,a.Ab=null,b&&b()))}
|
||||
function Xa(a,b){b&&(a.m.ready?b():a.Ab=b);return a.m.ready}function Ya(a,b){a.m.error=!0;a.B(b)}Array.prototype.indexOf||(Array.prototype.indexOf=function(a,b){b=b||0;for(var c=this.length;b<c;b++)if(this[b]===a)return b;return-1});Array.isArray||(Array.isArray=function(a){return"[object Array]"===Object.prototype.toString.call(a)});
|
||||
y.prototype={constructor:y,parent:null,toString:function(){return this.name?this.name:this.id||this.type},ba:function(a,b,c){switch(b){case "clear":return this.j[b]||(this.j[b]=c,c.onclick=function(a){return function(){a.j.print&&(a.j.print.value="")}}(this)),!0;case "print":return this.j[b]||(this.nb=this.j[b]=c,c.value="",this.V=function(a){return function(b,c){8192<a.value.length&&(a.value=a.value.substr(a.value.length-4096));a.value+=(void 0!==c?c+": ":"")+(b||"")+"\n";a.scrollTop=a.scrollHeight}}(c),
|
||||
this.B=function(a){this.V(a,this.Aa)}),!0;default:return!1}},log:function(){},V:function(){},status:function(a){this.V(this.Aa+": "+a)},B:function(a,b,c){c=c||this.type;b||x((c?c+": ":"")+a)},ka:function(){return this.m.R=!0},ja:function(a,b){b&&(this.m.R=!1);return!0}};function Wa(a,b){a.m.Ob?(a.m.Oa=!1,a.m.Ob=!1):a.m.error?a.V(a.toString()+" error"):a.m.Oa=b}function F(a,b){a.m.error||(a.m.ready=!1!==b,a.m.ready&&(b=a.Fb,a.Fb=null,b&&b()))}
|
||||
function Xa(a,b){b&&(a.m.ready?b():a.Fb=b);return a.m.ready}function Ya(a,b){a.m.error=!0;a.B(b)}Array.prototype.indexOf||(Array.prototype.indexOf=function(a,b){b=b||0;for(var c=this.length;b<c;b++)if(this[b]===a)return b;return-1});Array.isArray||(Array.isArray=function(a){return"[object Array]"===Object.prototype.toString.call(a)});
|
||||
Function.prototype.bind||(Function.prototype.bind=function(a){function b(){return e.apply(this instanceof c&&a?this:a,d.concat(Array.prototype.slice.call(arguments)))}function c(){}if("function"!=typeof this)throw new TypeError("Function.prototype.bind: non-callable object");var d=Array.prototype.slice.call(arguments,1),e=this;c.prototype=this.prototype;b.prototype=new c;return b});var Za="undefined"!==typeof ArrayBuffer,$a={48:"DL11R",52:"DL11X",56:"PC11R",60:"PC11X",64:"KW11",112:"RL11",144:"RK11"};
|
||||
function ab(a){y.call(this,"Panel",a,ab,512);this.la=this.i=this.c=this.o=this.s=this.v=0;this.A=this.C=this.w=!1;this.G=bb;this.f={};this.b={START:[1,1,!0,!1,this.Uc],STEP:[1,1,!1,!1,this.Vc],ENABLE:[1,1,!1,!1,this.Qc],CONT:[1,1,!0,!1,this.Oc],DEP:[0,0,!0,!1,this.Pc],EXAM:[1,1,!0,!1,this.Rc],LOAD:[1,1,!0,!1,this.Tc],TEST:[0,0,!0,!1,this.Sc]};for(a=0;22>a;a++)this.b["S"+a]=[0,0,!1,!1,this.Wc,a]}A(ab);var bb=7;function cb(a,b){return a.b[b]&&a.b[b][1]}h=ab.prototype;h.reset=function(){this.stop()};
|
||||
function ab(a){y.call(this,"Panel",a,ab,512);this.la=this.i=this.c=this.o=this.s=this.v=0;this.A=this.C=this.w=!1;this.F=bb;this.f={};this.b={START:[1,1,!0,!1,this.$c],STEP:[1,1,!1,!1,this.ad],ENABLE:[1,1,!1,!1,this.Wc],CONT:[1,1,!0,!1,this.Uc],DEP:[0,0,!0,!1,this.Vc],EXAM:[1,1,!0,!1,this.Xc],LOAD:[1,1,!0,!1,this.Zc],TEST:[0,0,!0,!1,this.Yc]};for(a=0;22>a;a++)this.b["S"+a]=[0,0,!1,!1,this.bd,a]}A(ab);var bb=7;function cb(a,b){return a.b[b]&&a.b[b][1]}h=ab.prototype;h.reset=function(){this.stop()};
|
||||
h.ba=function(a,b,c,d){if(this.l&&this.l.ba(a,b,c,d)||this.a&&this.a.ba(a,b,c,d))return!0;switch(b){case "R0":case "R1":case "R2":case "R3":case "R4":case "R5":case "R6":case "R7":case "NF":case "ZF":case "VF":case "CF":case "PS":return this.j[b]=c,this.v++,!0;default:return"led"==a||"rled"==a?(this.j[b]=c,this.f[b]=d?1:0,this.v++,!0):"switch"==a?(void 0===this.b[b]&&(this.b[b]=[d?1:0,d?1:0]),this.j[b]=c,a=c.parentElement||c,a=a.parentElement||a,a.onmousedown=function(a,b){return function(){db(a,
|
||||
b)}}(this,b),a.onmouseup=a.onmouseout=function(a,b){return function(){eb(a,b)}}(this,b),a.ontouchstart=function(a,b){return function(c){db(a,b);c.preventDefault()}}(this,b),a.ontouchend=function(a,b){return function(){eb(a,b)}}(this,b),!0):this.parent.ba.call(this,a,b,c,d)}};h.ia=function(a,b,c,d){this.l=a;this.h=b;this.a=c;this.D=d;fb(b,this,gb);hb(b,this.reset.bind(this));ib(this);jb(this)};h.ka=function(a,b){b||(kb(),this.reset());return!0};h.ja=function(){return!0};
|
||||
function lb(a,b,c){if(a=a.j[b])a.style.backgroundColor=c?"#ff0000":"#000000"}function ib(a,b){for(var c in a.f)lb(a,c,null!=b?b:a.f[c])}function mb(a,b,c){if(a=a.j[b])a.style.marginTop=c?"0px":"20px",a.style.backgroundColor=c?"#00ff00":"#228B22"}function jb(a){for(var b in a.b)mb(a,b,a.b[b][1])}function nb(a,b,c,d){a.j[b]&&(void 0===c&&(Ya(a,"Value for "+b+" is invalid"),G(a.a)),c=8==(a.D&&a.D.c||8)?ja(c,d):ka(c,d),a.j[b].textContent!=c&&(a.j[b].textContent=c))}
|
||||
function db(a,b){var c=a.b[b];mb(a,b,c[1]=1-c[1]);c[3]=!0;c[4]&&c[4].call(a,c[1],c[5]);"STEP"!=b&&(a.A="DEP"==b,a.C="EXAM"==b)}function eb(a,b){var c=a.b[b];c[2]&&c[3]&&(mb(a,b,c[1]=c[0]),c[4]&&c[4].call(a,c[1],c[5]));c[3]=!1}h.Uc=function(a){a||this.a.m.O||(a=this.a,a.h.reset(),ob(a),cb(this,"ENABLE")&&pb(this.a))};h.Vc=function(){};h.Qc=function(a){a||G(this.a)};
|
||||
h.Oc=function(a){if(!a&&!this.a.m.O)if(cb(this,"ENABLE"))pb(this.a);else{a=this.D;var b;if(b=a)a.m.Ka&&(a.m.Ib=!0),b=!a.m.Ka;if(b)Wa(a,!0),a.Cb(0,null),Wa(a,!1);else try{var c=this.a.Cb(1);0<c&&(qb(this.a,c),rb(this.a,c,!0),sb(this.a,c))}catch(d){"number"!=typeof d&&Ya(this.a,d.stack||d.message)}this.stop();this.l&&this.l.za()}};h.Pc=function(a){if(a&&!this.a.m.O)if(this.A&&tb(this),a=ub(this,this.c),this.G==bb)vb(this.h,this.la,a);else{var b=this.a,c=this.la;b.Ua++;b.pb(c,a);b.Ua--}};
|
||||
h.Rc=function(a){if(!a&&!this.a.m.O){this.C&&tb(this);if(this.G==bb)a=wb(this.h,this.la);else{a=this.a;var b=this.la;a.Ua++;b=a.X(b);a.Ua--;a=b}ub(this,a)}};h.Tc=function(a){a||this.a.m.O||xb(this,this.c)};h.Sc=function(a){if(a)this.w=!0,ib(this,!0);else if(this.w=!1,ib(this),void 0!==this.j.S0){for(a=this.c=0;22>a;a++)this.b["S"+a][1]=0&1<<a?1:0;jb(this)}};h.Wc=function(a,b){this.c=a?this.c|1<<b:this.c&~(1<<b)};
|
||||
function tb(a){var b=1145>a.a.Fa?8:16,c=65472<=a.la&&a.la<65472+b,b=c?1:2,c=c?15:a.h.Ga;cb(a,"STEP")||(b=-b);xb(a,a.la&~c|a.la+b&c)}function xb(a,b){a.la=b&a.h.Ga;b=a.la;for(var c=0;22>c;c++)yb(a,"A"+c,b&1<<c)}function ub(a,b){a.i=b&65535;b=a.i;for(var c=0;16>c;c++)yb(a,"D"+c,b&1<<c);return a.i}function yb(a,b,c){a.f[b]=c;a.w||lb(a,b,c)}h.stop=function(){xb(this,this.a.g[7])};h.setData=function(a,b){b?this.o=a:this.i=a};h.Yc=function(a,b){return(b?this.o:this.c)&65535};h.$d=function(a){this.o=a};
|
||||
var zb={},gb=(zb[65400]=[null,null,ab.prototype.Yc,ab.prototype.$d,"CNSW"],zb);function kb(){for(var a=!1,b=E(document,"pdp11","panel"),c=0;c<b.length;c++){var d=b[c],e=C(d),f=Ua(e.id);f||(a=!0,f=new ab(e));D(f,d);a&&F(f)}}Ia(kb);
|
||||
function Ab(a,b,c){y.call(this,"Bus",a,Ab,16);this.a=b;this.D=c;this.L=a.busWidth||16;this.w=1<<this.L;this.Ga=this.w-1;this.c=Bb;this.b=Math.log2(this.c);this.J=this.c>>2;this.l=this.c-1;this.v=this.w/this.c|0;this.Da=[];this.o=0;this.s=!1;this.A=[];this.Bc=[Cb,Db,Eb,Fb];a=new H(this);Gb(a,this.D);this.h=Array(this.v);this.f=Array(this.v);for(b=0;b<this.v;b++)this.h[b]=this.f[b]=a;this.Ca=this.w-Bb;Hb(this,this.Ca,Bb,Ib,this);this.I=this.G=(this.Ca&this.Ga)>>>this.b;this.C=0;this.i=this.Ga;F(this)}
|
||||
A(Ab);var Bb=8192,Jb=Bb-1;function Cb(a,b){var c=-1,d=this.controller,e=d.Da[a],f=b&65535;e?e[0]?c=e[0](f):e[2]&&(c=f&1?e[2](f&-2)>>8:e[2](f)&255):f&1&&(e=d.Da[a&-2])&&(e[2]?c=e[2](f&-2)>>8:e[0]&&(c=e[0](f)));if(0<=c)return c;I(d,b,16);return 255}
|
||||
function Db(a,b,c){var d=!1,e=this.controller,f=e.Da[a],g=c&65535;if(f)if(f[1])f[1](b,g),d=!0;else{if(f[3]){a=f[2]?f[2](g,!0):0;if(g&1)f[3](a&255|b<<8,g&-2);else f[3](a&-256|b,g);d=!0}}else g&1&&(f=e.Da[a&-2])&&(f[3]?(g&=-2,a=f[2]?f[2](g,!0):0,f[3](a&255|b<<8,g),d=!0):f[1]&&(f[1](b,g),d=!0));d||I(e,c,16)}function Eb(a,b){var c=-1,d=this.controller;a=d.Da[a];var e=b&65535;a&&(a[2]?c=a[2](e):a[0]&&(c=a[0](e)|a[0](e+1)<<8));if(0<=c)return c;I(d,b,16);return 65535}
|
||||
function Fb(a,b,c){var d=!1,e=this.controller;a=e.Da[a];var f=c&65535;a&&(a[3]?(a[3](b,f),d=!0):a[1]&&(a[1](b&255,f),a[1](b>>8,f+1),d=!0));d||I(e,c,16)}function Kb(a,b){if(b!=a.C){for(var c=0;c<a.v;c++)a.f[c]=a.h[c];a.C=0;a.i=a.Ga;b&&(a.C=b,b=1<<b,a.i=b-1,b-=Bb,a.I=(b&a.i)>>>a.b,a.f[a.I]=a.h[a.G])}}Ab.prototype.reset=function(){for(var a=0;a<this.A.length;a++)this.A[a]();Kb(this,16)};Ab.prototype.ka=function(a,b){b||this.reset();return!0};
|
||||
function Hb(a,b,c,d,e){for(var f=b,g=c,k=f>>>a.b;0<g&&k<a.h.length;){var l=a.h[k],m=k*a.c,p=a.c-(f-m);p>g&&(p=g);if(!e&&l&&l.size){if(l.type==d){if(f+g<=l.Ja)return l.ob+=l.Ja-f,l.Ja=f,!0;if(f>=l.Ja+l.ob){p=l.size-(f-m);p>g&&(p=g);l.ob=f-l.Ja+p;f=m+a.c;g-=p;k++;continue}}return Lb(1,f,g)}f=new H(a,f,p,a.c,d,e);Gb(f,a.D,l);a.h[k++]=f;f=m+a.c;g-=p}return 0>=g?(a.status((c>>10)+"Kb "+Mb[d]+" at "+ja(b)),!0):Lb(2,b,c)}function Nb(a,b){return a.f[(b&a.i)>>>a.b].Nb(b&a.l,b)}
|
||||
function Ob(a,b){return a.f[(b&a.i)>>>a.b].X(b&a.l,b)}function Pb(a,b,c){a.f[(b&a.i)>>>a.b].pb(b&a.l,c,b)}function wb(a,b){a.s=!1;a.o++;b=a.h[(b&a.Ga)>>>a.b].mc(b&a.l,b);a.o--;return b}function Qb(a,b,c){a.s=!1;a.o++;a.h[(b&a.Ga)>>>a.b].Ub(b&a.l,c&255,b);a.o--}function vb(a,b,c){a.s=!1;a.o++;a.h[(b&a.Ga)>>>a.b].pc(b&a.l,c&65535,b);a.o--}
|
||||
function Rb(a){for(var b=0,c=[],d=0;d<a.v;d++){var e=a.h[d];if(e.wa||e.Hc){c[b++]=d;var f=b++;if(e=e.save()){for(var g=0,k=0,l=[];g<e.length;){for(var m=e[g],p=g+1;p<e.length&&e[p]===m;)p++;l[k++]=p-g;l[k++]=m;g=p}l.length<e.length&&(e=l)}c[f]=e}}return c}function Sb(a){for(var b=Tb,c=0,d=0;d<a.h.length;d++){var e=a.h[d];e.type==b&&(c=e.Ja+e.ob)}return c}
|
||||
function Ub(a,b,c,d,e,f,g,k,l){for(var m=b==c?-1:0;b<=c;b+=2){var p=b&Jb;if(void 0!==a.Da[p])return x("I/O address already registered: "+ka(b,8,!0)),!1;var t=l||"unknown";t&&0<=m&&(t+=m++);a.Da[p]=[d,e,f,g,t,k||16,!1]}return!0}
|
||||
function fb(a,b,c,d){for(var e in c){var f=+e+(d||0),g=c[e];if(!(g[6]&&g[6]>a.a.Fa)){var k=g[0]?g[0].bind(b):null,l=g[1]?g[1].bind(b):null,m=g[2]?g[2].bind(b):null,p=g[3]?g[3].bind(b):null;65472<=f&&65487>=f&&(!k&&m&&(k=function(a){return function(b){return a(b)&255}.bind(b)}(m)),!l&&p&&(l=function(a){return function(b,c){return a(b,c)}.bind(b)}(p)));for(var t=g[4],w=g[5]||1,v=0;v<w;v++,f+=2)if(t&&1<w&&(t=g[4]+v),!Ub(a,f,f,k,l,m,p,g[7]||b.Mc,t||b.Aa))return!1}}return!0}
|
||||
function hb(a,b){a.A.push(b)}function I(a,b,c){a.s=!0;a.o||(c&&(a.a.Y|=c),J(a.a,4,0,b))}function Vb(a){var b=a.s;a.s=!1;return b}function Lb(a,b,c){x("Memory block error ("+a+": "+ka(b)+","+ka(c)+")");return!1}function K(a){y.call(this,"Device",a,K,256);this.b={Tf:0,Sb:-1}}A(K);h=K.prototype;
|
||||
h.ia=function(a,b,c,d){this.h=b;this.l=a;this.a=c;this.D=d;var e=this;this.b.Sb=Wb(c,function(){e.b.Xa|=128;e.b.Xa&64&&L(e.a,e.b.Wa);e.l&&e.l.za(1);Xb(e.a,e.b.Sb,1E3/60)});this.b.Wa=Yb(c,64,6,524288);fb(b,this,$b);hb(b,this.reset.bind(this));F(this)};h.reset=function(){this.b.Xa=128;Xb(this.a,this.b.Sb,1E3/60,!0)};h.ed=function(){return this.b.Xa};h.ge=function(a){this.b.Xa=a&192;this.b.Xa&64||ac(this.a,this.b.Wa)};h.gd=function(){var a=this.a,b=a.Z;b&57344||(b=b&-3199|a.fb<<5|a.gb<<1);return b};
|
||||
h.ie=function(a){bc(this.a,a&-129|this.a.Z&128)};h.hd=function(){var a=this.a;a.Z&57344||(a.wb=a.A>>16&65535);a=a.wb;a&65280&&(a=(a<<8|a>>8)&65535);return a};h.jd=function(){var a=this.a;a.Z&57344||(a.xb=a.A&65535);return a.xb};h.kd=function(){return this.a.ya};h.je=function(a){var b=this.a;1170>b.Fa&&(a&=-49);b.ya!=a&&(b.ya=a,b.Sa=a&16?4194303:262143,cc(b))};h.Sd=function(a){a=a>>1&63;var b=this.a.bb[a>>1];return a&1?b>>16:b&65535};
|
||||
h.Re=function(a,b){b=b>>1&63;var c=b>>1;this.a.bb[c]=b&1?this.a.bb[c]&65535|(a&63)<<16:this.a.bb[c]&-65536|a&65534};h.Ld=function(a){return this.a.H[1][a>>1&7]};h.Ke=function(a,b){this.a.H[1][b>>1&7]=a&65295};h.Jd=function(a){return this.a.H[1][(a>>1&7)+8]};h.Ie=function(a,b){this.a.H[1][(b>>1&7)+8]=a&65295};h.Kd=function(a){return this.a.aa[1][a>>1&7]};h.Je=function(a,b){b=b>>1&7;this.a.aa[1][b]=a;this.a.H[1][b]&=65295};h.Id=function(a){return this.a.aa[1][(a>>1&7)+8]};
|
||||
h.He=function(a,b){b=(b>>1&7)+8;this.a.aa[1][b]=a;this.a.H[1][b]&=65295};h.dd=function(a){return this.a.H[0][a>>1&7]};h.fe=function(a,b){this.a.H[0][b>>1&7]=a&65295};h.bd=function(a){return this.a.H[0][(a>>1&7)+8]};h.de=function(a,b){this.a.H[0][(b>>1&7)+8]=a&65295};h.cd=function(a){return this.a.aa[0][a>>1&7]};h.ee=function(a,b){b=b>>1&7;this.a.aa[0][b]=a;this.a.H[0][b]&=65295};h.ad=function(a){return this.a.aa[0][(a>>1&7)+8]};h.ce=function(a,b){b=(b>>1&7)+8;this.a.aa[0][b]=a;this.a.H[0][b]&=65295};
|
||||
h.Rd=function(a){return this.a.H[3][a>>1&7]};h.Qe=function(a,b){this.a.H[3][b>>1&7]=a&65295};h.Pd=function(a){return this.a.H[3][(a>>1&7)+8]};h.Oe=function(a,b){this.a.H[3][(b>>1&7)+8]=a&65295};h.Qd=function(a){return this.a.aa[3][a>>1&7]};h.Pe=function(a,b){b=b>>1&7;this.a.aa[3][b]=a;this.a.H[3][b]&=65295};h.Od=function(a){return this.a.aa[3][(a>>1&7)+8]};h.Ne=function(a,b){b=(b>>1&7)+8;this.a.aa[3][b]=a;this.a.H[3][b]&=65295};h.Za=function(a){a&=7;return this.a.F&2048?this.a.Ha[a]:this.a.g[a]};
|
||||
h.cb=function(a,b){b&=7;this.a.F&2048?this.a.Ha[b]=a:this.a.g[b]=a};h.pd=function(){return this.a.F&49152?this.a.qa[0]:this.a.g[6]};h.oe=function(a){this.a.F&49152?this.a.qa[0]=a:this.a.g[6]=a};h.sd=function(){return this.a.g[7]};h.re=function(a){this.a.g[7]=a};h.$a=function(a){a&=7;return this.a.F&2048?this.a.g[a]:this.a.Ha[a]};h.eb=function(a,b){b&=7;this.a.F&2048?this.a.g[b]=a:this.a.Ha[b]=a};h.qd=function(){return 1==(this.a.F&49152)>>14?this.a.g[6]:this.a.qa[1]};
|
||||
h.pe=function(a){1==(this.a.F&49152)>>14?this.a.g[6]=a:this.a.qa[1]=a};h.rd=function(){return 3==(this.a.F&49152)>>14?this.a.g[6]:this.a.qa[3]};h.qe=function(a){3==(this.a.F&49152)>>14?this.a.g[6]=a:this.a.qa[3]=a};h.$c=function(a){return this.a.Pb[a-65504>>1]};h.be=function(a,b){this.a.Pb[b-65504>>1]=a};h.lc=function(a){return 65520==a?(Sb(this.h)>>6)-1:0};h.oc=function(){};h.Nd=function(){return 1};h.Me=function(){};h.Zc=function(){return this.a.Y};h.ae=function(){this.a.Y=0};h.fd=function(){return this.a.Ob};
|
||||
h.he=function(a,b){b&1||(a&=255);this.a.Ob=a};h.ld=function(a,b){return b?0:this.a.nb};h.ke=function(a){var b=this.a;if(a&=65024){var c=a>>9;do a+=34;while(c>>=1);b.u|=1}b.nb=a};h.Md=function(a,b){return b?0:this.a.ab&65280};h.Le=function(a){this.a.ab=a|255};h.od=function(){return dc(this.a)};h.ne=function(a){ec(this.a,a)};h.nc=function(){};
|
||||
var M={},$b=(M[61568]=[null,null,K.prototype.Sd,K.prototype.Re,"UNIMAP",64,1170],M[62592]=[null,null,K.prototype.Ld,K.prototype.Ke,"SIPDR",8,1145,64],M[62608]=[null,null,K.prototype.Jd,K.prototype.Ie,"SDPDR",8,1145,64],M[62624]=[null,null,K.prototype.Kd,K.prototype.Je,"SIPAR",8,1145,64],M[62640]=[null,null,K.prototype.Id,K.prototype.He,"SDPAR",8,1145,64],M[62656]=[null,null,K.prototype.dd,K.prototype.fe,"KIPDR",8,1145,64],M[62672]=[null,null,K.prototype.bd,K.prototype.de,"KDPDR",8,1145,64],M[62688]=
|
||||
[null,null,K.prototype.cd,K.prototype.ee,"KIPAR",8,1145,64],M[62704]=[null,null,K.prototype.ad,K.prototype.ce,"KDPAR",8,1145,64],M[62798]=[null,null,K.prototype.kd,K.prototype.je,"MMR3",1,1145,64],M[65382]=[null,null,K.prototype.ed,K.prototype.ge,"LKS"],M[65402]=[null,null,K.prototype.gd,K.prototype.ie,"MMR0",1,1145,64],M[65404]=[null,null,K.prototype.hd,K.prototype.nc,"MMR1",1,1145,64],M[65406]=[null,null,K.prototype.jd,K.prototype.nc,"MMR2",1,1145,64],M[65408]=[null,null,K.prototype.Rd,K.prototype.Qe,
|
||||
"UIPDR",8,1145,64],M[65424]=[null,null,K.prototype.Pd,K.prototype.Oe,"UDPDR",8,1145,64],M[65440]=[null,null,K.prototype.Qd,K.prototype.Pe,"UIPAR",8,1145,64],M[65456]=[null,null,K.prototype.Od,K.prototype.Ne,"UDPAR",8,1145,64],M[65472]=[null,null,K.prototype.Za,K.prototype.cb,"R0SET0"],M[65473]=[null,null,K.prototype.Za,K.prototype.cb,"R1SET0"],M[65474]=[null,null,K.prototype.Za,K.prototype.cb,"R2SET0"],M[65475]=[null,null,K.prototype.Za,K.prototype.cb,"R3SET0"],M[65476]=[null,null,K.prototype.Za,
|
||||
K.prototype.cb,"R4SET0"],M[65477]=[null,null,K.prototype.Za,K.prototype.cb,"R5SET0"],M[65478]=[null,null,K.prototype.pd,K.prototype.oe,"R6KERNEL"],M[65479]=[null,null,K.prototype.sd,K.prototype.re,"R7KERNEL"],M[65480]=[null,null,K.prototype.$a,K.prototype.eb,"R0SET1",1,1145],M[65481]=[null,null,K.prototype.$a,K.prototype.eb,"R1SET1",1,1145],M[65482]=[null,null,K.prototype.$a,K.prototype.eb,"R2SET1",1,1145],M[65483]=[null,null,K.prototype.$a,K.prototype.eb,"R3SET1",1,1145],M[65484]=[null,null,K.prototype.$a,
|
||||
K.prototype.eb,"R4SET1",1,1145],M[65485]=[null,null,K.prototype.$a,K.prototype.eb,"R5SET1",1,1145],M[65486]=[null,null,K.prototype.qd,K.prototype.pe,"R6SUPER",1,1145],M[65487]=[null,null,K.prototype.rd,K.prototype.qe,"R6USER",1,1145],M[65504]=[null,null,K.prototype.$c,K.prototype.be,"CTRL",8,1170],M[65520]=[null,null,K.prototype.lc,K.prototype.oc,"LSIZE",1,1170],M[65522]=[null,null,K.prototype.lc,K.prototype.oc,"HSIZE",1,1170],M[65524]=[null,null,K.prototype.Nd,K.prototype.Me,"SYSID",1,1170],M[65526]=
|
||||
[null,null,K.prototype.Zc,K.prototype.ae,"CPUERR",1,1170],M[65528]=[null,null,K.prototype.fd,K.prototype.he,"MB",1,1170],M[65530]=[null,null,K.prototype.ld,K.prototype.ke,"PIR"],M[65532]=[null,null,K.prototype.Md,K.prototype.Le,"SL"],M[65534]=[null,null,K.prototype.od,K.prototype.ne,"PSW"],M);
|
||||
Ia(function(){for(var a=E(document,"pdp11","device"),b=0;b<a.length;b++){var c,d=a[b];c=C(d);switch(c.type){case "default":c=new K(c);D(c,d);break;case "pc11":c=new fc(c);D(c,d);break;case "rl11":c=new N(c);D(c,d);break;case "rk11":c=new O(c),D(c,d)}}});var gc;if(Za){var hc=new ArrayBuffer(2);(new DataView(hc)).setUint16(0,256,!0);gc=256===(new Uint16Array(hc))[0]}else gc=!1;var ic=gc;
|
||||
function H(a,b,c,d,e,f){this.h=a;this.id=jc+=2;this.a=null;this.Ja=b;this.ob=c;this.size=d||0;this.type=e||kc;this.l=e==lc;this.controller=null;Gb(this);this.wa=this.Hc=!1;if(this.size)if(f)this.controller=f,a=[null,0],this.a=a[0],mc(this,f.Bc);else if(Za)this.b=new ArrayBuffer(this.size),this.c=new DataView(this.b,0,this.size),this.j=new Uint8Array(this.b,0,this.size),this.s=new Uint16Array(this.b,0,this.size>>1),this.a=new Int32Array(this.b,0,this.size>>2),mc(this,ic?nc:oc);else{a=this.a=Array(this.size>>
|
||||
2);for(f=0;f<a.length;f++)a[f]=0;mc(this,pc)}else mc(this)}var kc=0,Tb=1,lc=2,Ib=4,Mb=["NONE","RAM","ROM","VID","H/W"],jc=0;
|
||||
H.prototype={constructor:H,parent:null,save:function(){var a,b;if(this.controller)a=null;else if(Za)for(a=Array(this.size>>2),b=0;b<a.length;b++)a[b]=this.c.getInt32(b<<2,!0);else a=this.a;return a},restore:function(a){if(this.controller)return!a;if(a&&this.size==a.length<<2){var b;if(Za)for(b=0;b<a.length;b++)this.c.setInt32(b<<2,a[b],!0);else this.a=a;return this.wa=!0}return!1},v:function(a,b){I(this.h,b,32);return 255},f:function(a,b,c){I(this.h,c,32)},w:function(a,b){return this.Nb(a++,b++)|
|
||||
this.Nb(a,b)<<8},A:function(a,b,c){this.Db(a++,b&255,c++);this.Db(a,b>>8,c)},L:function(a){return this.a[a>>2]>>>((a&3)<<3)&255},ga:function(a,b){a&1&&I(this.h,b,64);b=a>>2;a=(a&3)<<3;var c=this.a[b]>>a;return 24>a?c&65535:c&255|(this.a[b+1]&255)<<8},ma:function(a,b){var c=a>>2;a=(a&3)<<3;this.a[c]=this.a[c]&~(255<<a)|b<<a;this.wa=!0},Ca:function(a,b,c){a&1&&I(this.h,c,64);c=a>>2;a=(a&3)<<3;24>a?this.a[c]=this.a[c]&~(65535<<a)|b<<a:(this.a[c]=this.a[c]&16777215|b<<24,c++,this.a[c]=this.a[c]&-256|
|
||||
b>>8);this.wa=!0},G:function(a,b){return this.I(a,b)},U:function(a,b){return this.mc(a,b)},Ba:function(a,b,c){this.l?this.f(a,b,c):this.Ub(a,b,c)},ua:function(a,b,c){this.l?this.f(a,b,c):this.pc(a,b,c)},C:function(a){return this.j[a]},J:function(a){return this.j[a]},S:function(a,b){a&1&&I(this.h,b,64);return this.c.getUint16(a,!0)},fa:function(a,b){a&1&&I(this.h,b,64);return this.s[a>>1]},Aa:function(a,b){this.j[a]=b;this.wa=!0},sa:function(a,b){this.j[a]=b;this.wa=!0},na:function(a,b,c){a&1&&I(this.h,
|
||||
c,64);this.c.setUint16(a,b,!0);this.wa=!0},va:function(a,b,c){a&1&&I(this.h,c,64);this.s[a>>1]=b;this.wa=!0}};function Gb(a,b,c){a.D=b;a.i=a.o=0;c&&((a.i=c.i)&&rc(a,sc,!1),(a.o=c.o)&&tc(a,sc,!1))}function tc(a,b,c){c&&a.o||(a.Db=!a.l&&b[1]||a.f,a.pb=!a.l&&b[3]||a.A);if(c||void 0===c)a.Ub=b[1]||a.f,a.pc=b[3]||a.A}function rc(a,b,c){c&&a.i||(a.Nb=b[0]||a.v,a.X=b[2]||a.w);if(c||void 0===c)a.I=b[0]||a.v,a.mc=b[2]||a.w}function mc(a,b){b||(b=uc);rc(a,b,void 0);tc(a,b,void 0)}
|
||||
var uc=[],pc=[H.prototype.L,H.prototype.ma,H.prototype.ga,H.prototype.Ca],sc=[H.prototype.G,H.prototype.Ba,H.prototype.U,H.prototype.ua];if(Za)var oc=[H.prototype.C,H.prototype.Aa,H.prototype.S,H.prototype.na],nc=[H.prototype.J,H.prototype.sa,H.prototype.fa,H.prototype.va];
|
||||
function vc(a,b){y.call(this,"CPU",a,vc,1);b=a.cycles||b;var c=a.multiplier||1;this.Eb=0;this.tb=b;this.na=c;this.Jb=Math.round(this.tb/1E4)/100;this.Qa=this.Jb*this.na;this.m.O=!1;this.m.Rb=!1;this.m.Ea=a.autoStart;this.m.yb=!1;this.rb=this.Ta=0;this.sb=a.csStart;this.hb=a.csInterval;this.ib=a.csStop;this.L=[];this.ic=this.Yd.bind(this);F(this)}A(vc);var wc=["power","reset"];h=vc.prototype;
|
||||
h.ia=function(a,b,c,d){this.l=a;this.h=b;this.D=d;this.v=a.v;for(a=0;a<wc.length;a++)(b=this.j[wc[a]])&&this.l.ba(null,wc[a],b);F(this)};h.Wb=function(){};h.reset=function(){};h.save=function(){return null};h.restore=function(){return!1};
|
||||
h.ka=function(a,b){var c=xc(this.l,"autoStart");null!=c?this.m.Ea="true"==c?!0:"false"==c?!1:!!c:null==this.m.Ea&&(this.m.Ea=void 0===this.j.run);if(!b){this.Wb();if(a&&this.restore){yc(this);if(!this.restore(a))return!1;zc(this)}else this.reset();this.V("No debugger detected");this.m.Ea||this.V("CPU will not be auto-started, click Run to start")}return!0};h.ja=function(a){return a?this.save():!0};h.Ea=function(){return this.m.O?!0:this.m.Ea?(pb(this),!0):!1};h.dc=function(){return 0};
|
||||
function zc(a){void 0===a.sb&&(a.sb=0);void 0===a.hb&&(a.hb=-1);void 0===a.ib&&(a.ib=-1);a.m.yb=0<=a.sb&&0<a.hb;a.m.yb&&(a.rb=0,a.Ta=a.sb-a.ua)}function sb(a,b){if(a.m.yb){var c=!1;a.rb=a.rb+a.dc()|0;a.Ta-=b;0>=a.Ta&&(a.Ta+=a.hb,c=!0);0<=a.ib&&a.ib<=Ac(a)&&(a.hb=a.ib=-1,zc(a),G(a),c=!0);c&&a.V(Ac(a)+" cycles: checksum="+ka(a.rb))}}
|
||||
h.ba=function(a,b,c){var d=this;switch(b){case "power":case "reset":return this.j[b]=c,!0;case "run":return this.j[b]=c,c.onclick=function(){var a;if(a=d.l)if(a=d.l,a.m.R)a=!0;else{var b=null,c,k=B(a.id);for(c=0;c<k.length&&(b=k[c],b===a||b.m.ready);c++);if(c==k.length)for(c=0;c<k.length&&(b=k[c],b===a||b.m.R);c++);c==k.length&&(b=a);x("The "+b.type+" component ("+b.id+") is not "+(b.m.ready?"powered yet":"ready yet"+(b.Ab?" (waiting for notification)":""))+".");a=!1}a&&(d.m.O?G(d):pb(d))},!0;case "speed":return this.j[b]=
|
||||
c,!0;case "setSpeed":return this.j[b]=c,c.onclick=function(){Bc(d,d.na<<1,!0)},c.textContent=this.Qa.toFixed(2)+"Mhz",!0}return!1};h.za=function(a){this.l&&this.l.za(a)};function rb(a,b,c){a.ua+=b;c&&(a.ma=a.a=a.J=0)}function Cc(a,b){var c=1;b&&1<a.na&&a.Pa&&(c=a.Pa/a.Jb);a.fc=Math.round(1E3/30);a.ub=Math.floor(a.tb/30*c);b||(a.jb=a.ub);a.Kb=0}function Ac(a){return a.ua+a.ga+a.ma-a.a}function yc(a){a.Pa=0;a.hc=0;a.ua=a.ga=a.ma=a.a=a.J=0;zc(a);Bc(a,1)}
|
||||
function Bc(a,b,c){if(void 0!==b){.8>a.Pa/a.Qa&&(b=1);a.na=b;b=a.Jb*a.na;if(a.Qa!=b){a.Qa=b;b=a.Qa.toFixed(2)+"Mhz";var d=a.j.setSpeed;d&&(d.textContent=b);a.V("target speed: "+b)}c&&a.l&&Dc(a.l)}rb(a,a.ga);a.ga=0;a.fa=ra();a.sa=0;Cc(a)}function Wb(a,b){var c=a.L.length;a.L.push([-1,b]);return c}function Xb(a,b,c,d){0<=b&&b<a.L.length&&(d||0>a.L[b][0])&&(c=a.tb*a.na/1E3*c|0,a.m.O&&(c+=Ec(a)),a.L[b][0]=c)}
|
||||
function qb(a,b){for(var c=a.L.length-1;0<=c;c--){var d=a.L[c];0>d[0]||(d[0]-=b,0>=d[0]&&(d[0]=-1,d[1]()))}}function Ec(a,b){var c=a.ma-=a.a;a.a=a.J=0;b&&(a.ma=0);return c}
|
||||
h.Yd=function(){if(this.m.O){this.Kb>=this.tb&&Cc(this,!0);this.kb=0;this.qb=ra();if(this.sa){var a=this.qb-this.sa;a>this.fc&&(this.fa+=a,this.fa>this.qb&&(this.fa=this.qb))}try{do{for(var b,c=this.m.yb?1:this.ub,d=this.L.length-1;0<=d;d--){var e=this.L[d];0>e[0]||c>e[0]&&(c=e[0])}b=c;try{this.Cb(b)}catch(f){if("number"!=typeof f)throw f;}b=Ec(this,!0);this.kb+=b;this.ga+=b;sb(this,b);qb(this,b);this.jb-=b;if(0>=this.jb){this.jb+=this.ub;15<=++this.hc&&(this.za(),this.hc=0);break}}while(this.m.O)}catch(f){G(this);
|
||||
this.l&&this.l.stop(ra(),Ac(this));Ya(this,f.stack||f.message);return}if(this.m.O){a=setTimeout;b=this.ic;this.sa=ra();c=this.fc;this.kb&&(c=Math.round(c*this.kb/this.ub));c-=this.sa-this.qb;if(d=this.sa-this.fa)this.Pa=Math.round(this.ga/(10*d))/100,864E5<=d&&(this.ua=0,Bc(this));if(0>c||this.Pa<this.Qa)-1E3>c&&(this.fa-=c),c=0;this.Kb+=this.kb;this.sa+=c;a(b,c)}}};
|
||||
function pb(a){var b;a.m.error?(a.V(a.toString()+" error"),b=!0):b=!1;if(!b)if(a.m.O)a.V(a.toString()+" busy");else{Bc(a);a.m.O=!0;a.m.Rb=!0;if(b=a.j.run)b.textContent="Halt";a.l&&a.l.start(a.fa,Ac(a));a.D||a.status("Started");setTimeout(a.ic,0)}}h.Cb=function(){return 0};function G(a){var b=!1;if(a.m.O){Ec(a);rb(a,a.ga);a.ga=0;a.m.O=!1;if(b=a.j.run)b.textContent="Run";a.l&&a.l.stop(ra(),Ac(a));b=!0;a.D||a.status("Stopped")}a.m.complete=void 0;return b}
|
||||
function Fc(a){this.Fa=+a.model||1170;this.bc=a.addrReset||0;vc.call(this,a,6666667);this.vb=0;this.ec=255;1120>=this.Fa?(this.decode=Gc.bind(this),this.Oa=this.Fc,this.vb=8,this.ec=-1,this.kc=255,this.jc=0):(this.decode=Hc.bind(this),this.Oa=this.Gc,this.kc=~(1792|(1145>this.Fa?2048:0))&65535,this.jc=1145<=this.Fa?2048:0);Ic(this);this.Ua=0;this.I=null;this.Fb=[];this.m.complete=!1}A(Fc,vc);h=Fc.prototype;
|
||||
h.Wb=function(){for(var a=192,b=0;b<this.Fb.length;b++){var c=this.Fb[b];0>c.Tb&&(c.Tb=a,a+=4)}};h.reset=function(){this.status("Model "+this.Fa);this.m.O&&G(this);Ic(this);yc(this);this.m.error=!1;this.parent.reset.call(this)};
|
||||
function Ic(a){a.o=65536;a.f=32768;a.i=65535;a.s=32768;a.F=15;a.g=[0,0,0,0,0,0,0,a.bc,-1,-2,-3,-4,-5,-6,-7,-8];a.Ha=[0,0,0,0,0,0];a.qa=[0,0,0,0];a.w=0;a.Nc=[4,2,0,1];a.H=[[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[65535,65535,65535,65535,65535,65535,65535,65535,65535,65535,65535,65535,65535,65535,65535,65535],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0]];a.aa=[[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,
|
||||
0,0,0,0,0,0]];a.bb=[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0];a.Pb=[0,0,0,0,0,0,0,0];a.Ob=0;a.u=0;a.C=a.G=0;a.c=a.b=a.Hb=0;a.va=-1;ob(a)}function ob(a){a.Z=0;a.wb=0;a.xb=0;a.ya=0;a.Y=0;a.nb=0;a.ab=255;a.Ra=0;a.fb=0;a.gb=0;a.Sa=262143;a.Va=0;a.A=0;a.I=null;a.h&&(cc(a),a.Lc=Sb(a.h))}function cc(a){a.Ra?(a.U=65536,a.Ca=a.ya&16?4186112:253952,a.S=a.Jc,a.X=a.Ud,a.pb=a.Te,Kb(a.h,a.ya&16?22:18)):(a.U=0,a.Ca=57344,a.S=a.Ic,a.X=a.Td,a.pb=a.Se,Kb(a.h,16))}
|
||||
function bc(a,b){b&=-3073;if(a.Z!=b){b&57344&&!(a.Z&57344)&&(a.wb=a.A>>16&65535,a.xb=a.A&65535);a.Z=b;a.fb=(b&96)>>5;a.gb=(b&30)>>1;var c=0;b&257&&(c=4,b&1&&(c|=2));a.Ra!=c&&(a.Ra=c,cc(a))}}function Jc(a,b,c){a.bc=b;a.h.reset();ob(a);P(a,b);ec(a,0);if(c){for(b=2;5>=b;b++)a.g[b]=0;a.m.O||pb(a)}else a.D?G(a)||a.D.b():!1===c&&G(a);!a.m.O&&a.v&&a.v.stop()}h.dc=function(){return 0};
|
||||
h.save=function(){var a=new Q(this);a.set(0,[this.g,this.Ha,this.qa,this.bb,this.Pb,this.Y,this.Ob,this.nb,this.ab,dc(this),this.va,this.w,this.u,this.Z,this.wb,this.xb,this.ya,this.fb,this.gb,this.H,this.aa,this.Ra,this.Sa,this.Va,this.A]);a.set(1,[this.ua,this.na]);a.set(2,Rb(this.h));return a.data()};
|
||||
h.restore=function(a){var b=a[1];this.ua=b[1];Bc(this,b[3]);a:{b=this.h;a=a[2];var c;for(c=0;c<a.length-1;c+=2){var d=a[c],e=a[c+1];if(e&&e.length<b.J){for(var f=0,g=Array(b.J),k=0;k<e.length-1;)for(var l=e[k++],m=e[k++];l--;)g[f++]=m;e=g}f=b.h[d];if(!f||!f.restore(e)){x("Unable to restore memory block "+d);b=!1;break a}}b=!0}return b};function R(a){return a.o&65536?1:0}function Kc(a){return a.s&32768?8:0}function Lc(a,b){var c=a.g[7];a.g[7]=c+b&65535;return c}function P(a,b){a.g[7]=b&65535}
|
||||
function Yb(a,b,c,d){c={Tb:b,Ya:c,message:d||0,next:null};c.name=$a[b];a.Fb.push(c);return c}function ac(a,b){var c=a.I;if(c==b)a.I=b.next;else for(;c;){var d=c.next;if(d==b){c.next=d.next;break}c=d}a.I&&(a.u|=1)}function L(a,b){if(b!=a.I){var c=a.I;if(!c||c.Ya<=b.Ya)b.next=c,a.I=b;else{do{var d=c.next;if(!d||d.Ya<=b.Ya){b.next=d;c.next=b;break}c=d}while(c)}}a.u|=1}function Mc(a){return a.u&64?(J(a,168,64,-6),!0):a.u&32?(J(a,4,32,-5),!0):a.u&16?(J(a,12,16,-7),!0):!1}
|
||||
function dc(a){return a.F=a.F&63728|Kc(a)|(a.i&65535?0:4)|(a.f&32768?2:0)|R(a)}function ec(a,b){b&=a.kc;a.s=b<<12;a.i=~b&4;a.f=b<<14;a.o=b<<16;if((b^a.F)&a.jc)for(var c=a.Ha.length;0<=--c;){var d=a.g[c];a.g[c]=a.Ha[c];a.Ha[c]=d}a.w=b>>14&3;c=a.F>>14&3;a.w!=c&&(a.qa[c]=a.g[6],a.g[6]=a.qa[a.w]);a.F=b;a.u&=-3;a.u|=a.I?2:1}h.ca=function(a){this.s=this.i=a;this.f=0};h.Ia=function(a,b){this.s=this.i=this.o=a;this.f=b||0};function Nc(a,b){a.s=a.i=a.o=b;a.f=a.s^a.o>>1}
|
||||
function Oc(a,b,c,d){a.s=a.i=a.o=b;a.f=(c^d)&(d^b)}function J(a,b,c,d){if(!a.Ua){0>a.va?a.va=dc(a):a.w||(d=-4);-4==d&&(a.u&256&&(d=-1),a.u|=256,a.Y|=4,a.g[6]=b=4);if(-1!=d){a.A=b|4143316992;a.w=0;var e=a.X(b|a.U),f=a.X(b+2&65535|a.U);ec(a,f&-12289|a.va>>2&12288);Pc(a,a.va);Pc(a,a.g[7]);P(a,e)}a.a-=5;a.u&=~(c|19);a.u|=129;a.va=-1;-1==d&&G(a);if(-4<=d)throw b;}}function Qc(a){var b=Rc(a),c=Rc(a);a.F&49152&&(c=c&-225|a.F&63712);P(a,b);ec(a,c);a.u&=-17}
|
||||
function Sc(a,b){var c=b>>13&31;31>c&&(b=a.ya&32?a.bb[c]+(b&8190)&4194302:b&-3932161);return b}
|
||||
function Tc(a,b,c){var d,e,f;if(!(c&a.Ra))return f=b&65535,57344<=f&&(f|=a.Ca),f;d=b>>13;a.ya&a.Nc[a.w]||(d&=7);e=a.H[a.w][d];f=(a.aa[a.w][d]<<6)+(b&8191)&a.Sa;3932160<=f&&(f=Sc(a,f));if(a.Ua)return f;f>=a.Lc&&f<a.Ca?(a.Y|=32,J(a,4,0,f)):f&1&&!(c&1)&&(a.Y|=64,J(a,4,0,f));var g=0;switch(e&7){case 1:g=4096;case 2:e|=128;c&4&&(g=8192);break;case 4:g=4096;case 5:c&4&&(g=4096);case 6:e|=c&4?192:128;break;default:g=32768}32512!=(e&32520)&&(e&8?e&32512&&(b&8128)<(e>>2&8128)&&(g|=16384):(b&8128)>(e>>2&8128)&&
|
||||
(g|=16384));a.H[a.w][d]=e;if(f!=(4194170&a.Sa)||a.w)a.fb=a.w,a.gb=d;g&&(g&57344&&(0<=a.va&&(g|=128),a.Z&57344||(g|=a.Z&4096|a.fb<<5|a.gb<<1,bc(a,a.Z&-61695|g&61694)),J(a,168,64,-2)),a.Z&61440||!(f<(4191360&a.Sa)||f>(4194239&a.Sa))||(a.Z|=4096,a.Z&512&&(a.u|=64)));return f}function Rc(a){var b=a.X(a.g[6]|a.U);a.g[6]=a.g[6]+2&65535;return b}function Pc(a,b){var c=a.g[6]-2&65535;a.g[6]=c;a.A=a.A&65535|(a.A&-65536)<<8|16121856;a.u&256||a.Oa(4,-2,c);a.pb(c,b)}
|
||||
function Uc(a,b,c,d){var e,f,g=d&8?0:a.U;switch(b){case 0:return J(a,4,0,-3),0;case 1:return 6==c&&a.Oa(d,0,a.g[6]),a.a-=3,7==c?a.g[c]:a.g[c]|g;case 2:f=2;e=a.g[c];6==c&&a.Oa(d,f,e);7!=c&&(e|=g,6>c&&d&1&&(f=1));a.a-=3;break;case 3:f=2;e=a.g[c];7!=c&&(e|=g);e=a.X(e);e|=g;a.a-=7;break;case 4:f=-2;6>c&&d&1&&(f=-1);e=a.g[c]+f&65535;6==c&&a.Oa(d,f,e);7!=c&&(e|=g);a.a-=4;break;case 5:f=-2;e=a.g[c]-2&65535;7!=c&&(e|=g);e=a.X(e)|g;a.a-=8;break;case 6:return e=a.X(Lc(a,2)),e=e+a.g[c]&65535,6==c&&a.Oa(d,0,
|
||||
e),a.a-=6,e|g;case 7:return e=a.X(Lc(a,2)),e=e+a.g[c]&65535,e=a.X(e|a.U),a.a-=10,e|g}a.g[c]=a.g[c]+f&65535;a.A=a.A&65535|(a.A&-65536)<<8|(f<<3&248|c)<<16;return e}h.Fc=function(a,b,c){!this.w&&0>=b&&c<=this.ab&&(this.u|=32)};h.Gc=function(a,b,c){this.w||(65534<=c&&(c|=-65536),a&4&&c<=this.ab&&(c<=this.ab-32?J(this,4,0,-4):(this.Y|=8,this.u|=32)))};h.Ic=function(a,b,c){a=Uc(this,a,b,c);3932160<=a&&(a=Sc(this,a));return a};h.Jc=function(a,b,c){return Tc(this,Uc(this,a,b,c),c)};
|
||||
h.Td=function(a){3932160<=a&&(a=Sc(this,a));return Ob(this.h,this.Va=a)};h.Ud=function(a){return Ob(this.h,this.Va=Tc(this,a,2))};h.Se=function(a,b){3932160<=a&&(a=Sc(this,a));Pb(this.h,this.Va=a,b)};h.Te=function(a,b){Pb(this.h,this.Va=Tc(this,a,4),b)};function Vc(a,b,c){var d=a.b=b&7;(b=a.c=(b&56)>>3)?(d=Uc(a,b,d,2),c&65536||61440!==(a.F&61440)&&(d&=65535),a.w=a.F>>12&3,c=a.X(d|c&a.U),a.w=a.F>>14&3):c=6!=d||(a.F>>2&12288)===(a.F&12288)?a.g[d]:a.qa[a.F>>12&3];return c}
|
||||
function Wc(a,b,c,d){a.A=a.A&65535|1441792;var e=a.b=b&7;(b=a.c=(b&56)>>3)?(e=Uc(a,b,e,4),c&65536||(e&=65535),a.w=a.F>>12&3,e=Tc(a,e|c&65536,4),a.w=a.F>>14&3,Pb(a.h,e,d)):6!=e||(a.F>>2&12288)===(a.F&12288)?a.g[e]=d:a.qa[a.F>>12&3]=d}function Xc(a,b){var c;b>>=6;var d=a.G=b&7;(b=a.C=(b&56)>>3)?c=Nb(a.h,a.S(b,d,3)):c=a.g[d+a.vb]&a.ec;return c}function Yc(a,b){b>>=6;var c=a.G=b&7;return(b=a.C=(b&56)>>3)?Ob(a.h,a.S(b,c,2)):a.g[c+a.vb]}
|
||||
function Zc(a,b){var c=a.b=b&7;b=a.c=(b&56)>>3;return Uc(a,b,c,8)}function $c(a,b){var c,d=a.b=b&7;(b=a.c=(b&56)>>3)?c=Nb(a.h,a.S(b,d,3)):c=a.g[d]&255;return c}function ad(a,b){var c=a.b=b&7;return(b=a.c=(b&56)>>3)?Ob(a.h,a.S(b,c,2)):a.g[c]}function S(a,b,c,d){var e=a.b=b&7;(b=a.c=(b&56)>>3)?(e=a.Hb=a.S(b,e,7),c=0>c?a.g[-c-1]&255:c,b=a.h,c=d.call(a,c,Nb(a.h,e)),b.f[(e&b.i)>>>b.b].Db(e&b.l,c,e),e&1&&a.a--):(b=a.g[e],c=0>c?a.g[-c-1]&255:c,a.g[e]=b&65280|d.call(a,c,b&255))}
|
||||
function T(a,b,c,d){var e=a.b=b&7;(b=a.c=(b&56)>>3)?(e=a.S(b,e,6),Pb(a.h,e,d.call(a,0>c?a.g[-c-1]:c,Ob(a.h,e)))):a.g[e]=d.call(a,0>c?a.g[-c-1]:c,a.g[e])}function bd(a,b,c,d,e){var f=a.b=b&7;(b=a.c=(b&56)>>3)?(d=a.S(b,f,5),e.call(a,(c=0>c?a.g[-c-1]&255:c)<<8),e=a.h,e.f[(d&e.i)>>>e.b].Db(d&e.l,c,d),d&1&&a.a--):(c?(c=0>c?a.g[-c-1]&255:c,a.g[f]=a.g[f]&~d|c<<24>>24&d):a.g[f]&=~d,e.call(a,c<<8))}
|
||||
function cd(a,b,c,d){var e=a.b=b&7;(b=a.c=(b&56)>>3)?(e=a.S(b,e,4),d.call(a,c=0>c?a.g[-c-1]:c),Pb(a.h,e,c)):(a.g[e]=c=0>c?a.g[-c-1]:c,d.call(a,c))}function U(a,b,c){c&&(P(a,a.g[7]+(b<<24>>23)),a.a-=2);a.a-=3}
|
||||
h.Cb=function(a){this.m.complete=!0;var b=a?this.m.Rb?0:1:-1;this.m.Rb=!1;this.ma=this.a=a;this.u=this.u&-5|0;do{if(this.u){if(a=this.u&11)if(a=!1,this.u&2){var c=160,d=(this.nb&224)>>5,e=this.I&&this.I.Ya>d?this.I:null;e&&(c=e.Tb,d=e.Ya);d>(this.F&224)>>5?(this.u&8&&(Lc(this,2),this.u&=-9),J(this,c,0,-10),d=!0):d=!1;d&&(e&&ac(this,e),a=!0);this.I||this.nb||(this.u&=-3)}else this.u&1&&this.u++;if(a){if(this.u&4&&this.D.h(this.g[7],b)){G(this);break}if(0>b)break}if(this.u&112&&Mc(this)){if(this.u&
|
||||
4&&this.D.h(this.g[7],b)){G(this);break}if(0>b)break}}this.u=this.u&15|this.F&16;a=this.A=this.g[7];e=this.X(a);this.g[7]=a+2&65535;this.decode(e)}while(0<this.a);return this.m.complete?this.ma-this.a:void 0===this.m.complete?0:-1};Ia(function(){for(var a=E(document,"pdp11","cpu"),b=0;b<a.length;b++){var c=a[b],d=C(c),d=new Fc(d);D(d,c)}});function dd(a,b){var c=b+a;this.s=this.i=this.o=c;this.f=(a^c)&(b^c);return c&65535}
|
||||
function ed(a,b){var c=b+a,d=c<<8;this.s=this.i=this.o=d;this.f=(a<<8^d)&(b<<8^d);return c&255}function fd(a,b){a=b<<1;Nc(this,a);return a&65535}function gd(a,b){a=b<<1;Nc(this,a<<8);return a&255}function hd(a,b){a=b&32768|b>>1|b<<16;Nc(this,a);return a&65535}function id(a,b){a=b&128|b>>1|b<<8;Nc(this,a<<8);return a&255}function jd(a,b){a=b&~a;this.ca(a);return a}function kd(a,b){a=b&~a;this.ca(a<<8);return a}function ld(a,b){a|=b;this.ca(a);return a}function md(a,b){a|=b;this.ca(a<<8);return a}
|
||||
function nd(a,b){a=~b|65536;this.Ia(a);return a&65535}function od(a,b){a=~b|256;this.Ia(a<<8);return a&255}function pd(a,b){this.s=this.i=a=b-a;this.f=b&(b^a);return a&65535}function qd(a,b){a=b-a;var c=a<<8;b<<=8;this.s=this.i=c;this.f=b&(b^c);return a&255}function rd(a,b){this.s=this.i=a=b+a;this.f=a&(b^a);return a&65535}function sd(a,b){a=b+a;var c=a<<8;this.s=this.i=c;this.f=c&(b<<8^c);return a&255}function td(a,b){a=-b;this.Ia(a,a&b&32768);return a&65535}
|
||||
function ud(a,b){a=-b;this.Ia(a<<8,(a&b&128)<<8);return a&255}function vd(a,b){a=b<<1|this.o>>16&1;Nc(this,a);return a&65535}function wd(a,b){a=b<<1|this.o>>16&1;Nc(this,a<<8);return a&255}function xd(a,b){a=(this.o&65536|b)>>1|b<<16;Nc(this,a);return a&65535}function yd(a,b){a=((this.o&65536)>>8|b)>>1|b<<8;Nc(this,a<<8);return a&255}function zd(a,b){var c=b-a;Oc(this,c,a,b);return c&65535}function Ad(a,b){var c=b-a;Oc(this,c<<8,a<<8,b<<8);return c&255}
|
||||
function Bd(a,b){this.s=this.i=b&65280;this.f=this.o=0;return(b<<8|b>>8)&65535}function Cd(a,b){a^=b;this.ca(a);return a&65535}function Dd(a){T(this,a,Yc(this,a),dd);this.a-=this.c?9+(this.G&&6<=this.b?1:0):(this.C?5:3)+(7==this.b?2:0)}
|
||||
function Ed(a){var b=ad(this,a);a=a>>6&7;var c=this.g[a];c&32768&&(c|=4294901760);this.o=this.f=0;b&=63;if(b&32)b=64-b,16<b&&(b=16),this.o=c<<17-b,c>>=b;else if(b)if(16<b)this.f=c,c=0;else{this.o=c<<=b;var d=c>>15&65535;d&&65535!==d&&(this.f=32768)}this.g[a]=c&65535;this.s=this.i=c;this.a-=(this.c?6:7)+b}
|
||||
function Fd(a){var b=ad(this,a);a=a>>6&7;var c=this.g[a]<<16|this.g[a|1];this.o=this.f=0;b&=63;if(b&32){b=64-b;32<b&&(b=32);var d=c>>b-1;this.o=d<<16;d>>=1;c&2147483648&&(d|=4294967295<<32-b)}else b?(d=c<<b-1,this.o=d>>15,d<<=1,32<b&&(b=32),(c>>=32-b)&&4294967295!==(c|4294967295<<b&4294967295)&&(this.f=32768)):d=c;this.g[a]=d>>16&65535;this.g[a|1]=d&65535;this.s=d>>16;this.i=d>>16|d;this.a-=(this.c?6:7)+b}function Gd(a){U(this,a,!R(this))}function Hd(a){U(this,a,R(this))}
|
||||
function Id(a){T(this,a,Yc(this,a),jd);this.a-=this.c?9+(this.G&&6<=this.b?1:0):(this.C?5:3)+(7==this.b?2:0)}function Jd(a){S(this,a,Xc(this,a),kd);this.a-=this.c?9+(this.G&&6<=this.b?1:0):(this.C?5:3)+(7==this.b?2:0)}function Kd(a){T(this,a,Yc(this,a),ld);this.a-=this.c?9+(this.G&&6<=this.b?1:0):(this.C?5:3)+(7==this.b?2:0)}function Ld(a){S(this,a,Xc(this,a),md);this.a-=this.c?9+(this.G&&6<=this.b?1:0):(this.C?5:3)+(7==this.b?2:0)}
|
||||
function Md(a){var b=Yc(this,a);a=ad(this,a);this.ca((0>b?this.g[-b-1]:b)&a);this.a-=this.c?4+(this.G&&6<=this.b?1:0):(this.C?4:3)+(7==this.b?2:0)}function Nd(a){var b=Xc(this,a);a=$c(this,a);this.ca(((0>b?this.g[-b-1]&255:b)&a)<<8);this.a-=this.c?4+(this.G&&6<=this.b?1:0):(this.C?4:3)+(7==this.b?2:0)}function Od(a){U(this,a,this.i&65535?0:4)}function Pd(a){U(this,a,!Kc(this)==!(this.f&32768))}function Qd(a){U(this,a,!!(this.i&65535)&&!Kc(this)==!(this.f&32768))}
|
||||
function Rd(a){U(this,a,!R(this)&&!!(this.i&65535))}function Sd(a){U(this,a,(this.i&65535?0:4)||!Kc(this)!=!(this.f&32768))}function Td(a){U(this,a,R(this)||(this.i&65535?0:4))}function Ud(a){U(this,a,!Kc(this)!=!(this.f&32768))}function Vd(a){U(this,a,Kc(this))}function Wd(a){U(this,a,!!(this.i&65535))}function Xd(a){U(this,a,!Kc(this))}function Yd(){J(this,12,0,-9)}function Zd(a){U(this,a,!0)}function $d(a){U(this,a,!(this.f&32768))}function ae(a){U(this,a,this.f&32768?2:0)}
|
||||
function V(a){a&1&&(this.o=0);a&2&&(this.f=0);a&4&&(this.i=1);a&8&&(this.s=0);this.a-=5}function be(a){var b=Yc(this,a);a=ad(this,a);var c=(b=0>b?this.g[-b-1]:b)-a;Oc(this,c,a,b);this.a-=this.c?4+(this.G&&6<=this.b?1:0):(this.C?4:3)+(7==this.b?2:0)}function ce(a){var b=Xc(this,a);a=$c(this,a);var c=(b=(0>b?this.g[-b-1]&255:b)<<8)-(a<<=8);Oc(this,c,a,b);this.a-=this.c?4+(this.G&&6<=this.b?1:0):(this.C?4:3)+(7==this.b?2:0)}
|
||||
function de(a){var b=ad(this,a);if(b){a=a>>6&7;var c=this.g[a]<<16|this.g[a|1];this.o=this.f=0;b&32768&&(b|=-65536);var d=~~(c/b);-32768<=d&&32767>=d?(this.g[a]=d&65535,this.g[a|1]=c-d*b&65535,this.i=d>>16|d,this.s=d>>16):(this.f=32768,this.i=d>>15|d,this.s=c>>16,-1===b&&65534===this.g[a]&&(this.g[a]=this.g[a|1]=1));this.a-=53}else this.i=this.s=0,this.f=32768,this.o=65536,this.a-=7}function ee(){J(this,24,0,-9);this.a-=20}
|
||||
function fe(){this.F&49152?(this.Y|=128,J(this,4,0,-8)):(this.v&&1120==this.Fa&&this.v.setData(this.g[0],!0),this.D?this.D.l():G(this));this.a-=7}function ge(){J(this,16,0,-9);this.a-=20}var he=[0,7,7,10,7,11,9,13];function ie(a){this.J=this.a;P(this,Zc(this,a));this.a=this.J-he[this.c]}var je=[0,14,14,17,14,18,16,20];function ke(a){this.J=this.a;var b=Zc(this,a);a=a>>6&7;Pc(this,this.g[a]);this.g[a]=this.g[7];P(this,b);this.a=this.J-je[this.c]}var le=[3,9,9,13,10,14,12,16,4,9,9,13,10,14,13,17];
|
||||
function me(a){var b=Yc(this,a);this.J=this.a;cd(this,a,b,this.ca);this.a=this.J-le[(this.C?8:0)+this.c]+(7!=this.b||this.c?0:2)}function ne(a){var b=Xc(this,a);bd(this,a,b,65535,this.ca);this.a-=this.c?9+(this.G&&6<=this.b?1:0):(this.C?5:3)+(7==this.b?2:0)}var oe=[7,13,13,17,14,18,17,21];
|
||||
function pe(a){var b=ad(this,a);a=a>>6&7;b&32768&&(b|=-65536);var c=this.g[a];c&32768&&(c|=-65536);b=~~(b*c);this.g[a]=b>>16&65535;this.g[a|1]=b&65535;this.s=b>>16;this.i=this.s|b;this.f=0;this.o=-32768>b||32767<b?65536:0;this.a-=23}function qe(){this.a-=5}function re(){this.F&49152||(this.h.reset(),ob(this),this.v&&this.v.setData(this.g[0],!0));this.a-=667}function se(a){if(a&8)J(this,8,0,-9);else{var b=Rc(this);a&=7;7==a?P(this,b):(P(this,this.g[a]),this.g[a]=b);this.a-=9}}
|
||||
function te(){Qc(this);this.a-=13}function W(a){a&1&&(this.o=65536);a&2&&(this.f=32768);a&4&&(this.i=0);a&8&&(this.s=32768);this.a-=5}function ue(a){var b=(a&448)>>6;if(this.g[b]=this.g[b]-1&65535)P(this,this.g[7]-((a&63)<<1)),this.a+=1;this.a-=6}function ve(a){T(this,a,Yc(this,a),zd);this.a-=this.c?9+(this.G&&6<=this.b?1:0):(this.C?5:3)+(7==this.b?2:0)}function we(a){T(this,a,0,Bd);this.a-=this.c?9:3+(7==this.b?2:0)}function xe(){J(this,28,0,-9)}
|
||||
function ye(){this.v&&(this.v.la=this.g[7],this.v.setData(this.g[0],!0));this.u|=8;Lc(this,-2);this.a-=3}function ze(a){T(this,a,this.g[(a>>6&7)+this.vb],Cd);this.a-=this.c?9:3+(7==this.b?2:0)}function Y(){J(this,8,0,-9)}function Gc(a){Ae[a>>12].call(this,a)}function Be(a){Ce[a>>6&3].call(this,a)}function De(a){Ee[a>>6&3].call(this,a)}function Fe(a){Ge[a>>6&3].call(this,a)}function He(a){Ie[a&15].call(this,a)}function Je(a){Ke[a&15].call(this,a)}function Le(a){Me[a>>6&3].call(this,a)}
|
||||
function Ne(a){Oe[a>>6&3].call(this,a)}function Pe(a){Qe[a>>6&3].call(this,a)}
|
||||
var Ae=[function(a){Re[a>>8&15].call(this,a)},me,be,Md,Id,Kd,Dd,Y,function(a){Se[a>>8&15].call(this,a)},ne,ce,Nd,Jd,Ld,ve,Y],Re=[function(a){Te[a>>4&15].call(this,a)},Zd,Wd,Od,Pd,Ud,Qd,Sd,ke,ke,Be,De,Fe,Y,Y,Y],Ce=[function(a){cd(this,a,0,this.Ia);this.a-=this.c?9:3+(7==this.b?2:0)},function(a){T(this,a,0,nd);this.a-=this.c?9:3+(7==this.b?2:0)},function(a){T(this,a,1,rd);this.a-=this.c?9:3+(7==this.b?2:0)},function(a){T(this,a,1,pd);this.a-=this.c?9:3+(7==this.b?2:0)}],Ee=[function(a){T(this,a,0,td);
|
||||
this.a-=this.c?11:6},function(a){T(this,a,R(this)?1:0,dd);this.a-=this.c?9:3+(7==this.b?2:0)},function(a){T(this,a,R(this)?1:0,zd);this.a-=this.c?9:3+(7==this.b?2:0)},function(a){a=ad(this,a);this.Ia(a);this.a-=this.c?4:3+(7==this.b?2:0)}],Ge=[function(a){T(this,a,0,xd);this.a-=this.c?9:3+(7==this.b?2:0)},function(a){T(this,a,0,vd);this.a-=this.c?9:3+(7==this.b?2:0)},function(a){T(this,a,0,hd);this.a-=this.c?9:3+(7==this.b?2:0)},function(a){T(this,a,0,fd);this.a-=this.c?9:3+(7==this.b?2:0)}],Te=[function(a){Ue[a&
|
||||
15].call(this,a)},Y,Y,Y,ie,ie,ie,ie,se,Y,He,Je,we,we,we,we],Ue=[fe,ye,te,Yd,ge,re,Y,Y,Y,Y,Y,Y,Y,Y,Y,Y],Ie=[qe,function(){this.o=0;this.a-=5},function(){this.f=0;this.a-=5},V,function(){this.i=1;this.a-=5},V,V,V,function(){this.s=0;this.a-=5},V,V,V,V,V,V,V],Ke=[qe,function(){this.o=65536;this.a-=5},function(){this.f=32768;this.a-=5},W,function(){this.i=0;this.a-=5},W,W,W,function(){this.s=32768;this.a-=5},W,W,W,W,W,W,W],Se=[Xd,Vd,Rd,Td,$d,ae,Gd,Hd,ee,xe,Le,Ne,Pe,Y,Y,Y],Me=[function(a){bd(this,a,0,
|
||||
255,this.Ia);this.a-=this.c?9:3+(7==this.b?2:0)},function(a){S(this,a,0,od);this.a-=this.c?9:3+(7==this.b?2:0)},function(a){S(this,a,1,sd);this.a-=this.c?9:3+(7==this.b?2:0)},function(a){S(this,a,1,qd);this.a-=this.c?9:3+(7==this.b?2:0)}],Oe=[function(a){S(this,a,0,ud);this.a-=this.c?11:6},function(a){S(this,a,R(this)?1:0,ed);this.a-=this.c?9:3+(7==this.b?2:0)},function(a){S(this,a,R(this)?1:0,Ad);this.a-=this.c?9:3+(7==this.b?2:0)},function(a){a=$c(this,a);this.Ia(a<<8);this.a-=this.c?4:3+(7==this.b?
|
||||
2:0)}],Qe=[function(a){S(this,a,0,yd);this.a-=this.c?9+(this.Hb&1):3+(7==this.b?2:0)},function(a){S(this,a,0,wd);this.a-=this.c?9:3+(7==this.b?2:0)},function(a){S(this,a,0,id);this.a-=this.c?9+(this.Hb&1):3+(7==this.b?2:0)},function(a){S(this,a,0,gd);this.a-=this.c?9:3+(7==this.b?2:0)}];function Hc(a){Ve[a>>12].call(this,a)}
|
||||
var Ve=[function(a){We[a>>8&15].call(this,a)},me,be,Md,Id,Kd,Dd,function(a){Xe[a>>8&15].call(this,a)},function(a){Ye[a>>8&15].call(this,a)},ne,ce,Nd,Jd,Ld,ve,Y],We=[function(a){Ze[a>>4&15].call(this,a)},Zd,Wd,Od,Pd,Ud,Qd,Sd,ke,ke,Be,De,Fe,function(a){$e[a>>6&3].call(this,a)},Y,Y],$e=[function(a){a=this.g[7]+((a&63)<<1)&65535;var b=this.X(a|this.U);P(this,this.g[5]);this.g[6]=a+2&65535;this.g[5]=b;this.a-=8},function(a){a=Vc(this,a,0);this.ca(a);Pc(this,a);this.a-=11},function(a){var b=Rc(this);this.J=
|
||||
this.a;this.ca(b);Wc(this,a,0,b);this.a=this.J-oe[this.c]},function(a){cd(this,a,Kc(this)?65535:0,this.ca);this.a-=this.c?9:3+(7==this.b?2:0)}],Ze=[function(a){af[a&15].call(this,a)},Y,Y,Y,ie,ie,ie,ie,se,function(a){a&8?(this.F&49152||(this.F=this.F&-225|(a&7)<<5,this.u|=1,this.u&=-3),this.a-=5):J(this,8,0,-9)},He,Je,we,we,we,we],af=[fe,ye,function(){Qc(this);this.u|=this.F&16;this.a-=13},Yd,ge,re,te,function(){J(this,8,0,-9)},Y,Y,Y,Y,Y,Y,Y,Y],Xe=[pe,pe,de,de,Ed,Ed,Fd,Fd,ze,ze,Y,Y,Y,Y,ue,ue],Ye=[Xd,
|
||||
Vd,Rd,Td,$d,ae,Gd,Hd,ee,xe,Le,Ne,Pe,function(a){bf[a>>6&3].call(this,a)},Y,Y],bf=[Y,function(a){a=Vc(this,a,65536);this.ca(a);Pc(this,a);this.a-=11},function(a){var b=Rc(this);this.J=this.a;this.ca(b);Wc(this,a,65536,b);this.a=this.J-oe[this.c]},Y];
|
||||
function cf(a){y.call(this,"ROM",a,cf,128);this.da=this.c=null;this.i=a.addr;this.b=a.size;this.o=!1;this.f=a.alias;this.l=a.file;this.s=r(this.l);if(this.l){a=this.l;var b=la(this.s);"json"!=b&&"hex"!=b&&(a=ua()+"/api/v1/dump?file="+this.l+"&format=bytes&decimal=true");var c=this;u(a,null,!0,function(a,b,f){f?(c.B("Unable to load ROM resource (error "+f+": "+a+")"),c.l=null):(Ta(c.Ba,a,b),(a=ta(a,b))?(c.c=a.M,c.da=a.da):c.l=null);df(c)})}}A(cf);h=cf.prototype;
|
||||
h.ia=function(a,b,c,d){this.h=b;this.a=c;this.D=d;df(this)};h.ka=function(){this.da&&(this.D&&this.D.a(this.id,this.i,this.b,this.da),delete this.da);return!0};h.ja=function(){return!0};
|
||||
function df(a){if(!Xa(a)){if(a.l){if(!a.c||!a.h)return;a.b||(a.b=a.c.length);if(a.c.length!=a.b)Ya(a,"ROM size ("+ka(a.c.length,8,!0)+") does not match specified size ("+ka(a.b,8,!0)+")");else{var b;a:{b=a.i;a.status(a.b+"-byte ROM at "+ja(b));if(57344<=b&&b<57344+Bb){var c={};b=(c[b]=[cf.prototype.Hd,cf.prototype.Ge,null,null,null,a.b>>1],c);if(fb(a.h,a,b)){b=a.o=!0;break a}}else if(Hb(a.h,b,a.b,lc)){for(c=0;c<a.c.length;c++)Qb(a.h,b+c,a.c[c]);b=!0;break a}b=!1}if(b){b=[];"number"==typeof a.f?b.push(a.f):
|
||||
null!=a.f&&a.f.length&&(b=a.f);for(c=0;c<b.length;c++){for(var d=a,e=b[c],f=d.h,g=d.b,k=[],l=d.i>>>f.b;0<g&&l<f.h.length;)k.push(f.h[l++]),g-=f.c;f=d.h;d=d.b;g=0;for(e>>>=f.b;0<d&&e<f.h.length;){l=k[g++];if(!l)break;f.h[e++]=l;d-=f.c}}a.o||delete a.c}}}F(a)}}h.Hd=function(a){return this.c[a-this.i]};h.Ge=function(){};Ia(function(){for(var a=E(document,"pdp11","rom"),b=0;b<a.length;b++){var c=a[b],d=C(c),d=new cf(d);D(d,c)}});
|
||||
function ef(a){y.call(this,"RAM",a,ef);this.da=this.c=null;this.l=a.addr;this.f=a.size;this.pa=a.load;this.oa=a.exec;this.i=!1;this.b=a.file;this.o=r(this.b);if(this.b){a=this.b;var b=la(this.o);"json"!=b&&"hex"!=b&&(a=ua()+"/api/v1/dump?file="+this.b+"&format=bytes&decimal=true");var c=this;u(a,null,!0,function(a,b,f){f?(c.B("Unable to load RAM resource (error "+f+": "+a+")"),c.b=null):(Ta(c.Ba,a,b),(a=ta(a,b))?(c.c=a.M,c.da=a.da,null==c.pa&&(c.pa=a.pa),null==c.oa&&(c.oa=a.oa)):c.b=null);ff(c)})}}
|
||||
A(ef);ef.prototype.ia=function(a,b,c,d){this.h=b;this.a=c;this.D=d;ff(this)};ef.prototype.ka=function(){this.da&&(this.D&&this.D.a(this.id,this.l,this.f,this.da),delete this.da);return!0};ef.prototype.ja=function(){return!0};function ff(a){if(a.h&&(!a.i&&a.f&&(Hb(a.h,a.l,a.f,Tb)?a.i=!0:a.f=0),!Xa(a))){if(!a.i)x("No RAM allocated");else if(a.b){if(!a.c||!a.h)return;gf(a,a.c,a.pa,a.oa,a.l)}F(a)}}
|
||||
ef.prototype.reset=function(){if(this.i){for(var a=this.h,b=this.l,c=this.f,d=b&a.l,b=b>>>a.b;0<c&&b<a.h.length;){var e=a.h[b],f=c,g=0,k,d=d||0,g=g&255;void 0===f&&(f=e.size);if(Za&&e.j)for(k=d;f--&&k<e.j.length;k++)e.j[k]=g;else for(k=d;f--&&k<e.size;k++)e.Ub(d,g,e.Ja+d);c-=a.c;b++;d=0}this.c&&gf(this,this.c,this.pa,this.oa,this.l,!0)}};
|
||||
function gf(a,b,c,d,e,f){var g=!1,k=!1;if(null==c)for(var l=0;l<b.length-1;){var m=b[l]&255|(b[l+1]&255)<<8;if(m)if(m&255){if(1!=m)break;if(l+6>=b.length)break;for(var l=l+2,p=b[l++]&255|(b[l++]&255)<<8,t=b[l++]&255|(b[l++]&255)<<8,m=m+((p&255)+(p>>8)+(t&255)+(t>>8)),w=l,v=p-=6;0<p&&l<b.length;)m+=b[l++]&255,p--;if(p||l>=b.length)break;m+=b[l++]&255;if(m&255)break;if(v)for(;v--;)Qb(a.h,t++,b[w++]&255);else t&1?g=!0:null==d&&(d=t);k=!0}else l++;else l+=2}if(!k&&(null==c&&(c=e),null!=c)){for(e=0;e<
|
||||
b.length;e++)Qb(a.h,c+e,b[e]);k=!0}if(k){if(null==d||g)G(a.a),f=!1;null!=d&&Jc(a.a,d,f)}return k}Ia(function(){for(var a=E(document,"pdp11","ram"),b=0;b<a.length;b++){var c=a[b],d=C(c),d=new ef(d);D(d,c)}});function hf(a){y.call(this,"Keyboard",a,hf,1024);F(this)}A(hf);hf.prototype.ba=function(){return!1};hf.prototype.ia=function(a,b,c,d){this.l=a;this.a=c;this.D=d};Ia(function(){for(var a=E(document,"pdp11","keyboard"),b=0;b<a.length;b++){var c=a[b],d=C(c),d=new hf(d);D(d,c)}});
|
||||
function Z(a){this.A=a.adapter;this.L=a.baudReceive||9600;this.ma=a.baudTransmit||9600;this.sa=a.upperCase;this.f=this.o=null;this.fa=a.tabSize;this.S=a.charBOL;this.s=0;this.w=!0;y.call(this,"SerialPort",a,Z,262144);var b=a.binding;if("console"==b)this.o="";else{var c;a=jf;b&&(void 0===c&&(c="Panel"),(c=Va(c,this.id))&&(b=c.j[b])&&this.ba(null,a,b))}this.i=this.G=this.I=null;this.exports={connect:this.gc,receiveData:this.Bb,receiveStatus:this.Xd}}A(Z);var jf="buffer";h=Z.prototype;
|
||||
h.ba=function(a,b,c){var d=this;switch(b){case jf:return this.j[b]=this.f=c,c.onkeydown=function(a){a=a||window.event;var b=0,c=a.keyCode;8==c?b=a.altKey?n.Xb:n.tc:46==c?b=n.Xb:a.ctrlKey&&c>=n.Vb&&c<=n.Ac&&(b=c-(n.Vb-n.qc));b&&(a.preventDefault&&a.preventDefault(),d.Bb(b));return!0},c.onkeypress=function(a){a=a||window.event;var b=a.which||a.keyCode;a.altKey&&b==n.sc&&(b=n.rc);d.Bb(b);a.preventDefault&&a.preventDefault();return!0},c.onpaste=function(a){a.stopPropagation&&a.stopPropagation();a.preventDefault&&
|
||||
a.preventDefault();(a=a.clipboardData||window.clipboardData)&&d.Bb(a.getData("Text"))},c.removeAttribute("readonly"),!0}return!1};
|
||||
h.ia=function(a,b,c,d){this.l=a;this.h=b;this.a=c;this.D=d;var e=this;this.U=Yb(this.a,this.A?-1:48,4,262144);this.ga=Wb(this.a,function(){var a;a=-1;e.v.length&&(a=e.v.shift()&255,e.sa&&97<=a&&122>a&&(a-=32),Xb(e.a,e.ga,1E3/Math.round(e.L/10)));0<=a&&(e.C=a,e.b&128?e.C|=49152:e.b|=128,e.b&64&&L(c,e.U))});this.J=Yb(this.a,this.A?-1:52,4,262144);this.na=Wb(this.a,function(){e.c|=128;e.c&64&&L(c,e.J)});fb(b,this,kf,this.A?64832+8*(this.A-1)-65392:0);hb(b,this.reset.bind(this));F(this)};
|
||||
h.gc=function(a){if(!this.i){var b=xc(this.l,"connection");if(b){var c=b.split("->");if(2==c.length){var d=pa(c[0]);if(d!=this.Aa)return;c=pa(c[1]);if(this.i=Ua(c)){var e=this.i.exports;if(e){var f=e.connect;f&&f.call(this.i,this.w);if(this.G=e.receiveData){this.w=a;this.I=e.receiveStatus;this.status(this.Ba+"."+d+" connected to "+c);return}}}}this.status("Unable to establish connection: "+b)}}};
|
||||
h.ka=function(a,b){if(!b)if(this.gc(this.w),!a||!this.restore)this.reset();else if(!this.restore(a))return!1;return!0};h.ja=function(a){return a?this.save():!0};h.reset=function(){lf(this)};h.save=function(){var a=new Q(this);a.set(0,[]);return a.data()};h.restore=function(){return lf(this)};function lf(a){a.C=0;a.b=8192;a.c=128;a.v=[];return!0}
|
||||
h.Bb=function(a){if("number"==typeof a)this.v.push(a);else if("string"==typeof a)for(var b=0,c,d=0;d<a.length;d++){c=b;b=a.charCodeAt(d);if(10==b){if(13==c)continue;b=13}this.v.push(b)}else this.v=this.v.concat(a);Xb(this.a,this.ga,1E3/Math.round(this.L/10));return!0};h.Xd=function(a){var b=this.b;this.b&=-12289;a&32&&(this.b|=8192);a&256&&(this.b|=4096);b!=this.b&&(this.b|=32768,this.b&32&&L(this.a,this.U))};h.ud=function(){var a=this.b&65534;this.b&=-32769;return a};
|
||||
h.te=function(a){var b=a^this.b;this.b=this.b&-112|a&111;this.I&&b&6&&(b=0,b=this.w?b|(a&4?32:0)|(a&2?320:0):b|(a&4?16:0)|(a&2?1048576:0),this.I.call(this.i,b))};h.td=function(){this.b&=-129;return this.C};h.se=function(){};h.Wd=function(){return this.c};h.Ve=function(a){this.c&128&&(a&64?L(this.a,this.J):ac(this.a,this.J));this.c=this.c&-70|a&69};h.Vd=function(){return 0};
|
||||
h.Ue=function(a){a&=255;this.G&&this.G.call(this.i,a);a&=127;if(this.f)if(13==a)this.s=0;else if(8==a)this.f.value=this.f.value.slice(0,-1),0<this.s&&this.s--;else{if(a){var b;b=(b=13!=a&&10!=a?qa[a]:null)?"<"+b+">":String.fromCharCode(a);var c=b.length;32>a&&1==c&&(c=0);9==a&&(a=this.fa||8,c=a-this.s%a,this.fa&&(b=" ".slice(0,c)));this.S&&!this.s&&c&&(b=String.fromCharCode(this.S)+b);this.f.value+=b;this.f.scrollTop=this.f.scrollHeight;this.s+=c}}else if(null!=
|
||||
this.o){if(10==a||1024<=this.o.length)this.V(this.o),this.o="";10!=a&&(this.o+=String.fromCharCode(a))}Xb(this.a,this.na,1E3/Math.round(this.ma/10));this.c&=-129};var mf={},kf=(mf[65392]=[null,null,Z.prototype.ud,Z.prototype.te,"RCSR"],mf[65394]=[null,null,Z.prototype.td,Z.prototype.se,"RBUF"],mf[65396]=[null,null,Z.prototype.Wd,Z.prototype.Ve,"XCSR"],mf[65398]=[null,null,Z.prototype.Vd,Z.prototype.Ue,"XBUF"],mf);
|
||||
Ia(function(){for(var a=E(document,"pdp11","serial"),b=0;b<a.length;b++){var c=a[b],d=C(c),d=new Z(d);D(d,c)}});function fc(a){y.call(this,"PC11",a,fc);this.C=nf(this,a.autoMount);this.c=0;this.S=a.baudReceive||3600;this.v=this.w=this.b=0;this.s=[];this.o=of;this.f=pf;this.A=this.i="";this.M=this.pa=this.oa=null;this.J=-1;this.G=!Ba("Mobi")&&window&&"FileReader"in window}A(fc);var of="",pf=0;
|
||||
function nf(a,b){if(b&&"string"==typeof b)try{b=eval("("+b+")")}catch(c){x(a.type+" auto-mount error: "+c.message+" ("+b+")"),b=null}return b||{}}h=fc.prototype;
|
||||
h.ba=function(a,b,c){var d=this,e=pf;switch(b){case "listTapes":return this.j[b]=c,c.onchange=function(){var a=d.j.descTape,b=c.options[c.selectedIndex];if(a&&b){var e={};if(b=b.getAttribute("data-value"))try{e=eval("("+b+")")}catch(l){x("PC11 option error: "+l.message)}b=e.desc;void 0===b&&(b="");e=e.href;void 0!==e&&(b='<a href="'+e+'" target="_blank">'+b+"</a>");a.innerHTML=b}},!0;case "descTape":return this.j[b]=c,!0;case "readTape":e=2;case "loadTape":return e||(e=1),this.j[b]=c,c.onclick=function(){var a=
|
||||
d.j.listTapes;a&&qf(d,a.options[a.selectedIndex].text,a.value,e)},!0;case "mountTape":if(!this.G){c.parentNode.removeChild(c);break}this.j[b]=c;c.addEventListener("change",function(){var a=c.children[0];a.children[1].disabled=!a.children[0].files.length});c.onsubmit=function(a){if(a=a.currentTarget[1].files[0]){var b=a.name;qf(d,r(b,!0),b,1,a)}return!1};return!0;case "readProgress":return this.j[b]=c,!0}return!1};
|
||||
h.ia=function(a,b,c,d){this.l=a;this.h=b;this.a=c;this.D=d;this.L=rf(a);var e=this;if(a=nf(this,xc(this.l,"autoMount")))for(var f in a)"PTR"==f&&(this.C[f]=a[f]);this.I=Yb(this.a,56,4,4096);this.U=Wb(this.a,function(){1==(e.b&32769)&&!(e.b&128)&&e.v<e.s.length&&(e.w=e.s[e.v++]&255,sf(e,e.v/e.s.length*100),e.b|=128,e.b&=-2049,e.b&64&&L(e.a,e.I))});fb(b,this,tf);hb(b,this.reset.bind(this));uf(this,"None",of,!0);this.G&&uf(this,"Local Tape","?");uf(this,"Remote Tape","??");vf(this)||F(this)};
|
||||
h.ka=function(a,b){if(!b)if(!a||!this.restore)this.reset();else if(!this.restore(a))return!1;return!0};h.ja=function(a){return a?this.save():!0};h.reset=function(){this.b&=-2241;this.w=0};function vf(a){a.c=0;var b=a.C.PTR;if(b){var c=b.path||"";if(!(b=b.name))a:{if((b=a.j.listTapes)&&b.options)for(var d=0;d<b.options.length;d++){var e=b.options[d];if(e.value==c){b=e.text;break a}}b=r(c,!0)}c&&b?wf(a,b,c,1,!0):xf(a)}return!!a.c}
|
||||
function qf(a,b,c,d,e){if(c)if("?"==c)a.B('Use "Choose File" and "Mount" to select and load a local tape.');else{if("??"==c){c=window.prompt("Enter the URL of a remote tape image.","")||"";if(!c)return;b=r(c);a.status("Attempting to load "+c+' as "'+b+'"');a.o="??"}else a.o=c;wf(a,b,c,d,!1,e)}else yf(a,!1)}function wf(a,b,c,d,e,f){var g=-1;if(a.i.toLowerCase()!=c.toLowerCase()||a.f!=d)g++,yf(a,!0),a.m.Ka?a.B("PC11 busy"):(e&&a.c++,zf(a,b,c,d,f)?g++:a.m.Ka=!0);g&&Af(a,a.A,a.i,a.f,a.M,a.pa,a.oa)}
|
||||
function zf(a,b,c,d,e){var f=c;if(e){var g=new FileReader;g.onload=function(){var e=g.result;e&&(e=new Uint8Array(e,0,e.byteLength),Af(a,b,c,d,e),a.o="?");xf(a)};g.readAsArrayBuffer(e);return!0}0>c.indexOf("/api/v1/dump")&&(e=la(c),f="json"==e||"gz"==e?encodeURI(c):ua()+"/api/v1/dump?path="+encodeURIComponent(c)+"&format=json");return!!u(f,null,!0,function(e,f,g){var k=0>g&&a.l&&!a.l.m.R;g?a.B('Unable to load tape "'+b+'" (error '+g+": "+e+")",k):(Ta(a.Ba,e,f),(e=ta(e,f))&&Af(a,b,c,d,e.M,e.pa,e.oa));
|
||||
a.m.Ka=!1;a.c&&(a.c--,a.c||F(a));xf(a)})}function uf(a,b,c,d){if((a=a.j.listTapes)&&a.options){for(var e=0;e<a.options.length;e++)if(a.options[e].value==c)return;e=document.createElement("option");e.text=b;e.value=c;d&&a.childNodes[0]?a.insertBefore(e,a.childNodes[0]):a.appendChild(e)}}function xf(a){var b=a.j.listTapes;if(b&&b.options){a=a.o||a.i;for(var c=0;c<b.options.length;c++)if(b.options[c].value==a){b.selectedIndex!=c&&(b.selectedIndex=c);break}c==b.options.length&&(b.selectedIndex=0)}}
|
||||
function sf(a,b){b|=0;if(b!==a.J){var c=a.j.readProgress;c&&(c=(c=E(c,"pcjs-progress-bar"))&&c[0])&&c.style&&(c.style.width=b+"%");a.J=b}}function Af(a,b,c,d,e,f,g){a.A=b;a.i=c;a.f=d;a.M=e;a.pa=f;a.oa=g;2==d?a.L&&gf(a.L,e,f,g,null,!1)?a.status('Read tape "'+b+'"'):a.B('No valid memory address for tape "'+b+'"'):(a.v=0,a.s=e,a.status('Loaded tape "'+b+'"'),sf(a,0))}function yf(a,b){if(a.i||!1===b)a.A="",a.i="",b||(a.f&&a.status(1==a.f?"tape detached":"tape unloaded"),a.o=of,a.f=pf,xf(a))}h.save=function(){return(new Q(this)).data()};
|
||||
h.restore=function(){return!0};h.nd=function(){return this.b&65534};h.me=function(a){a&1&&(this.b&32768?(a&=-2,this.b&64&&L(this.a,this.I)):(this.b&=-129,this.b|=2048,this.w=0,Xb(this.a,this.U,1E3/Math.round(this.S/10))));this.b=this.b&-66|a&65};h.md=function(){this.b&=-129;this.b|=2048;return this.w};h.le=function(){};var Bf={},tf=(Bf[65384]=[null,null,fc.prototype.nd,fc.prototype.me,"PRS"],Bf[65386]=[null,null,fc.prototype.md,fc.prototype.le,"PRB"],Bf);
|
||||
function Cf(a,b,c){y.call(this,"Disk",{id:a.Ba+".disk"+ka(++Df,4)},Cf,8192);this.controller=a;this.l=a.l;this.D=a.D;this.f=b;this.ra=b.name;this.zb=b.zb;Ef(this,c,b.K,b.P,b.N,b.W);F(this)}var Df=0;A(Cf);h=Cf.prototype;h.ia=function(a,b,c,d){this.D=d};
|
||||
function Ef(a,b,c,d,e,f){a.mode=b;a.K=c;a.P=d;a.N=e;a.W=f;a.a=[];if("preload"!=a.mode){b=Array(a.K);for(c=0;c<b.length;c++){d=Array(a.P);for(e=0;e<d.length;e++){f=Array(a.N);for(var g=1;g<=f.length;g++)f[g-1]=Ff(null,c,e,g,a.W,0);d[e]=f}b[c]=d}a.a=b}a.b=null}
|
||||
function Gf(a,b,c,d,e){var f=c;if(a.h)return!0;a.ra=b;a.ea=c;a.Qb=r(c);a.h=e;a.i=a.controller;if(d){var g=new FileReader;g.onload=function(){var b=g.result,c,d=b?b.byteLength:0,e=ia[d];if(e){a.K=e[0];a.P=e[1];a.N=e[2];a.W=e[3]||512;c=a.W>>2;var f=e=0,b=new DataView(b,0,d);a.a=Array(a.K);for(d=0;d<a.a.length;d++)for(var w=a.a[d]=Array(a.P),v=0;v<w.length;v++)for(var X=w[v]=Array(a.N),xa=0;xa<X.length;xa++){for(var Zb=Ff(null,d,v,xa+1,a.W,0),sg=Zb.data,qc=0;qc<c;qc++,f+=4)var tg=sg[qc]=b.getInt32(f,
|
||||
!0),e=e+tg&-1;Zb.ha=c;X[xa]=Zb}a.b=e;c=a}else a.B("Unrecognized disk format ("+d+" bytes)");a.h&&(a.h.call(a.controller,a.f,c,a.ra,a.ea),a.h=null)};g.readAsArrayBuffer(d);return!0}0>c.indexOf("/api/v1/dump")&&(b=la(c),"json"==b||"gz"==b?f=encodeURI(c):(d="path",e="&mbhd=10",!c.indexOf("http:")||!c.indexOf("ftp:")||0<="dsk ima img 360 720 12 144".split(" ").indexOf(b)?(d="disk",e="&mbhd=0"):ma(c,"/")&&(d="dir"),f=ua()+"/api/v1/dump?"+d+"="+encodeURIComponent(c)+(a.zb?"":e)+"&format=json"));return!!u(f,
|
||||
null,!0,function(b,c,d){Hf(a,b,c,d)})}
|
||||
function Hf(a,b,c,d){var e=null;a.c=!1;var f=0>d&&a.l&&!a.l.m.R;if(d)a.controller.B('Unable to load disk "'+a.ra+'" (error '+d+": "+b+")",f);else{Ta(a.controller.Ba,b,c);try{if(0<r(a.Qb,!0).toLowerCase().indexOf("-readonly"))a.c=!0;else{var g=c.indexOf("\n");0<g&&1024>g&&0<c.substring(0,g).indexOf("write-protected")&&(a.c=!0)}var k;"<"==c.substr(0,1)?k=["Missing disk image: "+a.ra]:k=0>c.indexOf("0x")&&'["'!=c.substr(0,2)?JSON.parse(c.replace(/([a-z]+):/gm,'"$1":').replace(/\/\/[^\n]*/gm,"")):eval("("+
|
||||
c+")");if(k.length)if(1==k.length)x(k[0]);else{a.K=k.length;a.P=k[0].length;a.N=k[0][0].length;var l=k[0][0][0];a.W=l&&l.length||512;for(d=c=0;d<a.K;d++)for(f=0;f<a.P;f++)for(g=0;g<a.N;g++)if(l=k[d][f][g]){var m=l.length;void 0===m&&(m=l.length=512);var m=m>>2,p=l.pattern;void 0===p&&(p=l.pattern=0);var t=l.data;if(void 0===t){var w=l.bytes;if(void 0!==w&&w.length){for(var v=m<<2,X=w.length;X<v;X++)w[X]=p;If(l,w)}else t=[],p=l.pattern=p|p<<8|p<<16|p<<24,l.data=t;delete l.bytes}Ff(l,d,f);for(v=0;v<
|
||||
t.length;v++)c=c+t[v]&-1}a.a=k;a.b=c;e=a}else x("Empty disk image: "+a.ra)}catch(xa){x("Disk image error ("+b+"): "+xa.message)}}a.h&&(a.h.call(a.i,a.f,e,a.ra,a.ea),a.h=null)}function Ff(a,b,c,d,e,f){a||(a={sector:d,length:e,data:[],pattern:f});a.Yf=b;a.Zf=c;a.ta=a.ha=0;a.wa=!1;return a}
|
||||
h.seek=function(a,b,c,d,e){d=null;var f=this.f,g=this.a[a];if(g){var k=g[b];if(!k&&f.Dc&&b<f.P)for(k=g[b]=Array(f.$b),g=0;g<k.length;g++)k[g]=Ff(null,a,b,g+1,f.Mb,0);if(k){for(g=0;g<k.length;g++)if(k[g]&&k[g].sector==c){d=k[g];break}!d&&f.Dc&&9==f.Gb&&(d=k[g]=Ff(null,a,b,f.Gb,f.Mb,0))}}e&&e(d,!1);return d};function If(a,b){for(var c=0,d=a.length>>2,e=Array(d),f=0;f<d;f++)e[f]=b[c]|b[c+1]<<8|b[c+2]<<16|b[c+3]<<24,c+=4;a.data=e}
|
||||
function db(a,b){var c=a.b[b];mb(a,b,c[1]=1-c[1]);c[3]=!0;c[4]&&c[4].call(a,c[1],c[5]);"STEP"!=b&&(a.A="DEP"==b,a.C="EXAM"==b)}function eb(a,b){var c=a.b[b];c[2]&&c[3]&&(mb(a,b,c[1]=c[0]),c[4]&&c[4].call(a,c[1],c[5]));c[3]=!1}h.$c=function(a){a||this.a.m.O||(a=this.a,a.h.reset(),ob(a),cb(this,"ENABLE")&&pb(this.a))};h.ad=function(){};h.Wc=function(a){a||G(this.a)};
|
||||
h.Uc=function(a){if(!a&&!this.a.m.O)if(cb(this,"ENABLE"))pb(this.a);else{a=this.D;var b;if(b=a)a.m.Oa&&(a.m.Ob=!0),b=!a.m.Oa;if(b)Wa(a,!0),a.Ib(0,null),Wa(a,!1);else try{var c=this.a.Ib(1);0<c&&(qb(this.a,c),rb(this.a,c,!0),sb(this.a,c))}catch(d){"number"!=typeof d&&Ya(this.a,d.stack||d.message)}this.stop();this.l&&this.l.za()}};h.Vc=function(a){if(a&&!this.a.m.O)if(this.A&&tb(this),a=ub(this,this.c),this.F==bb)this.h.tb(this.la,a);else{var b=this.a,c=this.la;b.Va++;b.h.La(vb(b,c,4),a);b.Va--}};
|
||||
h.Xc=function(a){if(!a&&!this.a.m.O){this.C&&tb(this);if(this.F==bb)a=this.h.pb(this.la);else{a=this.a;var b=this.la;a.Va++;b=a.h.Ia(vb(a,b,2));a.Va--;a=b}ub(this,a)}};h.Zc=function(a){a||this.a.m.O||wb(this,this.c)};h.Yc=function(a){if(a)this.w=!0,ib(this,!0);else if(this.w=!1,ib(this),void 0!==this.j.S0){for(a=this.c=0;22>a;a++)this.b["S"+a][1]=0&1<<a?1:0;jb(this)}};h.bd=function(a,b){this.c=a?this.c|1<<b:this.c&~(1<<b)};
|
||||
function tb(a){var b=1145>a.a.Ja?8:16,c=65472<=a.la&&a.la<65472+b,b=c?1:2,c=c?15:a.h.Za;cb(a,"STEP")||(b=-b);wb(a,a.la&~c|a.la+b&c)}function wb(a,b){a.la=b&a.h.Za;b=a.la;for(var c=0;22>c;c++)xb(a,"A"+c,b&1<<c)}function ub(a,b){a.i=b&65535;b=a.i;for(var c=0;16>c;c++)xb(a,"D"+c,b&1<<c);return a.i}function xb(a,b,c){a.f[b]=c;a.w||lb(a,b,c)}h.stop=function(){wb(this,this.a.g[7])};h.setData=function(a,b){b?this.o=a:this.i=a};h.dd=function(a,b){return(b?this.o:this.c)&65535};h.fe=function(a){this.o=a};
|
||||
var yb={},gb=(yb[65400]=[null,null,ab.prototype.dd,ab.prototype.fe,"CNSW"],yb);function kb(){for(var a=!1,b=E(document,"pdp11","panel"),c=0;c<b.length;c++){var d=b[c],e=C(d),f=Ua(e.id);f||(a=!0,f=new ab(e));D(f,d);a&&F(f)}}Ia(kb);
|
||||
function zb(a,b,c){y.call(this,"Bus",a,zb,16);this.a=b;this.D=c;this.L=a.busWidth||16;this.w=1<<this.L;this.Za=this.w-1;this.b=Ab;this.c=Math.log2(this.b);this.I=this.b>>2;this.l=this.b-1;this.v=this.w/this.b|0;this.Ga=[];this.f=0;this.o=!1;this.A=[];this.Hc=[Bb,Cb,Db,Eb];a=new H(this);Fb(a,this.D);this.h=Array(this.v);this.i=Array(this.v);for(b=0;b<this.v;b++)this.h[b]=this.i[b]=a;this.Ca=this.w-Ab;Gb(this,this.Ca,Ab,Hb,this);this.H=this.F=(this.Ca&this.Za)>>>this.c;this.C=0;this.s=this.Za;F(this)}
|
||||
A(zb);var Ab=8192,Ib=Ab-1;function Bb(a,b){var c=-1,d=this.controller,e=d.Ga[a],f=b&65535;e?e[0]?c=e[0](f):e[2]&&(c=f&1?e[2](f&-2)>>8:e[2](f)&255):f&1&&(e=d.Ga[a&-2])&&(e[2]?c=e[2](f&-2)>>8:e[0]&&(c=e[0](f)));if(0<=c)return c;I(d,b,16);return 255}
|
||||
function Cb(a,b,c){var d=!1,e=this.controller,f=e.Ga[a],g=c&65535;if(f)if(f[1])f[1](b,g),d=!0;else{if(f[3]){a=f[2]?f[2](g,!0):0;if(g&1)f[3](a&255|b<<8,g&-2);else f[3](a&-256|b,g);d=!0}}else g&1&&(f=e.Ga[a&-2])&&(f[3]?(g&=-2,a=f[2]?f[2](g,!0):0,f[3](a&255|b<<8,g),d=!0):f[1]&&(f[1](b,g),d=!0));d||I(e,c,16)}function Db(a,b){var c=-1,d=this.controller;a=d.Ga[a];var e=b&65535;a&&(a[2]?c=a[2](e):a[0]&&(c=a[0](e)|a[0](e+1)<<8));if(0<=c)return c;I(d,b,16);return 65535}
|
||||
function Eb(a,b,c){var d=!1,e=this.controller;a=e.Ga[a];var f=c&65535;a&&(a[3]?(a[3](b,f),d=!0):a[1]&&(a[1](b&255,f),a[1](b>>8,f+1),d=!0));d||I(e,c,16)}function Jb(a,b){if(b!=a.C){for(var c=0;c<a.v;c++)a.i[c]=a.h[c];a.C=0;a.s=a.Za;b&&(a.C=b,b=1<<b,a.s=b-1,b-=Ab,a.H=(b&a.s)>>>a.c,a.i[a.H]=a.h[a.F])}}h=zb.prototype;h.reset=function(){for(var a=0;a<this.A.length;a++)this.A[a]();Jb(this,16)};h.ka=function(a,b){b||this.reset();return!0};
|
||||
function Gb(a,b,c,d,e){for(var f=b,g=c,k=f>>>a.c;0<g&&k<a.h.length;){var l=a.h[k],m=k*a.b,p=a.b-(f-m);p>g&&(p=g);if(!e&&l&&l.size){if(l.type==d){if(f+g<=l.Na)return l.ub+=l.Na-f,l.Na=f,!0;if(f>=l.Na+l.ub){p=l.size-(f-m);p>g&&(p=g);l.ub=f-l.Na+p;f=m+a.b;g-=p;k++;continue}}return Kb(1,f,g)}f=new H(a,f,p,a.b,d,e);Fb(f,a.D,l);a.h[k++]=f;f=m+a.b;g-=p}return 0>=g?(a.status((c>>10)+"Kb "+Lb[d]+" at "+ja(b)),!0):Kb(2,b,c)}h.ob=function(a){return this.i[(a&this.s)>>>this.c].Tb(a&this.l,a)};
|
||||
h.Ia=function(a){return this.i[(a&this.s)>>>this.c].aa(a&this.l,a)};h.Hb=function(a,b){this.i[(a&this.s)>>>this.c].$b(a&this.l,b,a)};h.La=function(a,b){this.i[(a&this.s)>>>this.c].Jb(a&this.l,b,a)};function Mb(a,b){return a.h[(b&a.Za)>>>a.c]}h.kc=function(a){this.o=!1;this.f++;a=Mb(this,a).w(a&this.l,a);this.f--;return a};h.pb=function(a){this.o=!1;this.f++;a=Mb(this,a).F(a&this.l,a);this.f--;return a};h.sb=function(a,b){this.o=!1;this.f++;Mb(this,a).s(a&this.l,b&255,a);this.f--};
|
||||
h.tb=function(a,b){this.o=!1;this.f++;Mb(this,a).I(a&this.l,b&65535,a);this.f--};function Nb(a){for(var b=0,c=[],d=0;d<a.v;d++){var e=a.h[d];if(e.wa||e.Nc){c[b++]=d;var f=b++;if(e=e.save()){for(var g=0,k=0,l=[];g<e.length;){for(var m=e[g],p=g+1;p<e.length&&e[p]===m;)p++;l[k++]=p-g;l[k++]=m;g=p}l.length<e.length&&(e=l)}c[f]=e}}return c}function Ob(a){for(var b=Pb,c=0,d=0;d<a.h.length;d++){var e=a.h[d];e.type==b&&(c=e.Na+e.ub)}return c}
|
||||
function Qb(a,b,c,d,e,f,g,k,l){for(var m=b==c?-1:0;b<=c;b+=2){var p=b&Ib;if(void 0!==a.Ga[p])return x("I/O address already registered: "+ka(b,8,!0)),!1;var t=l||"unknown";t&&0<=m&&(t+=m++);a.Ga[p]=[d,e,f,g,t,k||16,!1]}return!0}
|
||||
function fb(a,b,c,d){for(var e in c){var f=+e+(d||0),g=c[e];if(!(g[6]&&g[6]>a.a.Ja)){var k=g[0]?g[0].bind(b):null,l=g[1]?g[1].bind(b):null,m=g[2]?g[2].bind(b):null,p=g[3]?g[3].bind(b):null;65472<=f&&65487>=f&&(!k&&m&&(k=function(a){return function(b){return a(b)&255}.bind(b)}(m)),!l&&p&&(l=function(a){return function(b,c){return a(b,c)}.bind(b)}(p)));for(var t=g[4],w=g[5]||1,v=0;v<w;v++,f+=2)if(t&&1<w&&(t=g[4]+v),!Qb(a,f,f,k,l,m,p,g[7]||b.Sc,t||b.Aa))return!1}}return!0}
|
||||
function hb(a,b){a.A.push(b)}function I(a,b,c){a.o=!0;a.f||(c&&(a.a.X|=c),J(a.a,4,0,b))}function Rb(a){var b=a.o;a.o=!1;return b}function Kb(a,b,c){x("Memory block error ("+a+": "+ka(b)+","+ka(c)+")");return!1}function K(a){y.call(this,"Device",a,K,256);this.b={Zf:0,Yb:-1}}A(K);h=K.prototype;
|
||||
h.ia=function(a,b,c,d){this.h=b;this.l=a;this.a=c;this.D=d;var e=this;this.b.Yb=Sb(c,function(){e.b.Ya|=128;e.b.Ya&64&&L(e.a,e.b.Xa);e.l&&e.l.za(1);Ub(e.a,e.b.Yb,1E3/60)});this.b.Xa=Vb(c,64,6,524288);fb(b,this,Wb);hb(b,this.reset.bind(this));F(this)};h.reset=function(){this.b.Ya=128;Ub(this.a,this.b.Yb,1E3/60,!0)};h.ld=function(){return this.b.Ya};h.me=function(a){this.b.Ya=a&192;this.b.Ya&64||Xb(this.a,this.b.Xa)};h.nd=function(){var a=this.a,b=a.Y;b&57344||(b=b&-3199|a.hb<<5|a.ib<<1);return b};
|
||||
h.oe=function(a){Yb(this.a,a&-129|this.a.Y&128)};h.od=function(){var a=this.a;a.Y&57344||(a.Bb=a.A>>16&65535);a=a.Bb;a&65280&&(a=(a<<8|a>>8)&65535);return a};h.pd=function(){var a=this.a;a.Y&57344||(a.Cb=a.A&65535);return a.Cb};h.qd=function(){return this.a.ya};h.pe=function(a){var b=this.a;1170>b.Ja&&(a&=-49);b.ya!=a&&(b.ya=a,b.Ta=a&16?4194303:262143,Zb(b))};h.Yd=function(a){a=a>>1&63;var b=this.a.eb[a>>1];return a&1?b>>16:b&65535};
|
||||
h.Xe=function(a,b){b=b>>1&63;var c=b>>1;this.a.eb[c]=b&1?this.a.eb[c]&65535|(a&63)<<16:this.a.eb[c]&-65536|a&65534};h.Rd=function(a){return this.a.J[1][a>>1&7]};h.Qe=function(a,b){this.a.J[1][b>>1&7]=a&65295};h.Pd=function(a){return this.a.J[1][(a>>1&7)+8]};h.Oe=function(a,b){this.a.J[1][(b>>1&7)+8]=a&65295};h.Qd=function(a){return this.a.Z[1][a>>1&7]};h.Pe=function(a,b){b=b>>1&7;this.a.Z[1][b]=a;this.a.J[1][b]&=65295};h.Od=function(a){return this.a.Z[1][(a>>1&7)+8]};
|
||||
h.Ne=function(a,b){b=(b>>1&7)+8;this.a.Z[1][b]=a;this.a.J[1][b]&=65295};h.kd=function(a){return this.a.J[0][a>>1&7]};h.le=function(a,b){this.a.J[0][b>>1&7]=a&65295};h.hd=function(a){return this.a.J[0][(a>>1&7)+8]};h.je=function(a,b){this.a.J[0][(b>>1&7)+8]=a&65295};h.jd=function(a){return this.a.Z[0][a>>1&7]};h.ke=function(a,b){b=b>>1&7;this.a.Z[0][b]=a;this.a.J[0][b]&=65295};h.gd=function(a){return this.a.Z[0][(a>>1&7)+8]};h.ie=function(a,b){b=(b>>1&7)+8;this.a.Z[0][b]=a;this.a.J[0][b]&=65295};
|
||||
h.Xd=function(a){return this.a.J[3][a>>1&7]};h.We=function(a,b){this.a.J[3][b>>1&7]=a&65295};h.Vd=function(a){return this.a.J[3][(a>>1&7)+8]};h.Ue=function(a,b){this.a.J[3][(b>>1&7)+8]=a&65295};h.Wd=function(a){return this.a.Z[3][a>>1&7]};h.Ve=function(a,b){b=b>>1&7;this.a.Z[3][b]=a;this.a.J[3][b]&=65295};h.Ud=function(a){return this.a.Z[3][(a>>1&7)+8]};h.Te=function(a,b){b=(b>>1&7)+8;this.a.Z[3][b]=a;this.a.J[3][b]&=65295};h.ab=function(a){a&=7;return this.a.G&2048?this.a.Ka[a]:this.a.g[a]};
|
||||
h.fb=function(a,b){b&=7;this.a.G&2048?this.a.Ka[b]=a:this.a.g[b]=a};h.vd=function(){return this.a.G&49152?this.a.qa[0]:this.a.g[6]};h.ue=function(a){this.a.G&49152?this.a.qa[0]=a:this.a.g[6]=a};h.yd=function(){return this.a.g[7]};h.xe=function(a){this.a.g[7]=a};h.bb=function(a){a&=7;return this.a.G&2048?this.a.g[a]:this.a.Ka[a]};h.gb=function(a,b){b&=7;this.a.G&2048?this.a.g[b]=a:this.a.Ka[b]=a};h.wd=function(){return 1==(this.a.G&49152)>>14?this.a.g[6]:this.a.qa[1]};
|
||||
h.ve=function(a){1==(this.a.G&49152)>>14?this.a.g[6]=a:this.a.qa[1]=a};h.xd=function(){return 3==(this.a.G&49152)>>14?this.a.g[6]:this.a.qa[3]};h.we=function(a){3==(this.a.G&49152)>>14?this.a.g[6]=a:this.a.qa[3]=a};h.fd=function(a){return this.a.Vb[a-65504>>1]};h.he=function(a,b){this.a.Vb[b-65504>>1]=a};h.tc=function(a){return 65520==a?(Ob(this.h)>>6)-1:0};h.vc=function(){};h.Td=function(){return 1};h.Se=function(){};h.ed=function(){return this.a.X};h.ge=function(){this.a.X=0};h.md=function(){return this.a.Ub};
|
||||
h.ne=function(a,b){b&1||(a&=255);this.a.Ub=a};h.rd=function(a,b){return b?0:this.a.rb};h.qe=function(a){var b=this.a;if(a&=65024){var c=a>>9;do a+=34;while(c>>=1);b.u|=1}b.rb=a};h.Sd=function(a,b){return b?0:this.a.cb&65280};h.Re=function(a){this.a.cb=a|255};h.ud=function(){return $b(this.a)};h.te=function(a){ac(this.a,a)};h.uc=function(){};
|
||||
var M={},Wb=(M[61568]=[null,null,K.prototype.Yd,K.prototype.Xe,"UNIMAP",64,1170],M[62592]=[null,null,K.prototype.Rd,K.prototype.Qe,"SIPDR",8,1145,64],M[62608]=[null,null,K.prototype.Pd,K.prototype.Oe,"SDPDR",8,1145,64],M[62624]=[null,null,K.prototype.Qd,K.prototype.Pe,"SIPAR",8,1145,64],M[62640]=[null,null,K.prototype.Od,K.prototype.Ne,"SDPAR",8,1145,64],M[62656]=[null,null,K.prototype.kd,K.prototype.le,"KIPDR",8,1145,64],M[62672]=[null,null,K.prototype.hd,K.prototype.je,"KDPDR",8,1145,64],M[62688]=
|
||||
[null,null,K.prototype.jd,K.prototype.ke,"KIPAR",8,1145,64],M[62704]=[null,null,K.prototype.gd,K.prototype.ie,"KDPAR",8,1145,64],M[62798]=[null,null,K.prototype.qd,K.prototype.pe,"MMR3",1,1145,64],M[65382]=[null,null,K.prototype.ld,K.prototype.me,"LKS"],M[65402]=[null,null,K.prototype.nd,K.prototype.oe,"MMR0",1,1145,64],M[65404]=[null,null,K.prototype.od,K.prototype.uc,"MMR1",1,1145,64],M[65406]=[null,null,K.prototype.pd,K.prototype.uc,"MMR2",1,1145,64],M[65408]=[null,null,K.prototype.Xd,K.prototype.We,
|
||||
"UIPDR",8,1145,64],M[65424]=[null,null,K.prototype.Vd,K.prototype.Ue,"UDPDR",8,1145,64],M[65440]=[null,null,K.prototype.Wd,K.prototype.Ve,"UIPAR",8,1145,64],M[65456]=[null,null,K.prototype.Ud,K.prototype.Te,"UDPAR",8,1145,64],M[65472]=[null,null,K.prototype.ab,K.prototype.fb,"R0SET0"],M[65473]=[null,null,K.prototype.ab,K.prototype.fb,"R1SET0"],M[65474]=[null,null,K.prototype.ab,K.prototype.fb,"R2SET0"],M[65475]=[null,null,K.prototype.ab,K.prototype.fb,"R3SET0"],M[65476]=[null,null,K.prototype.ab,
|
||||
K.prototype.fb,"R4SET0"],M[65477]=[null,null,K.prototype.ab,K.prototype.fb,"R5SET0"],M[65478]=[null,null,K.prototype.vd,K.prototype.ue,"R6KERNEL"],M[65479]=[null,null,K.prototype.yd,K.prototype.xe,"R7KERNEL"],M[65480]=[null,null,K.prototype.bb,K.prototype.gb,"R0SET1",1,1145],M[65481]=[null,null,K.prototype.bb,K.prototype.gb,"R1SET1",1,1145],M[65482]=[null,null,K.prototype.bb,K.prototype.gb,"R2SET1",1,1145],M[65483]=[null,null,K.prototype.bb,K.prototype.gb,"R3SET1",1,1145],M[65484]=[null,null,K.prototype.bb,
|
||||
K.prototype.gb,"R4SET1",1,1145],M[65485]=[null,null,K.prototype.bb,K.prototype.gb,"R5SET1",1,1145],M[65486]=[null,null,K.prototype.wd,K.prototype.ve,"R6SUPER",1,1145],M[65487]=[null,null,K.prototype.xd,K.prototype.we,"R6USER",1,1145],M[65504]=[null,null,K.prototype.fd,K.prototype.he,"CTRL",8,1170],M[65520]=[null,null,K.prototype.tc,K.prototype.vc,"LSIZE",1,1170],M[65522]=[null,null,K.prototype.tc,K.prototype.vc,"HSIZE",1,1170],M[65524]=[null,null,K.prototype.Td,K.prototype.Se,"SYSID",1,1170],M[65526]=
|
||||
[null,null,K.prototype.ed,K.prototype.ge,"CPUERR",1,1170],M[65528]=[null,null,K.prototype.md,K.prototype.ne,"MB",1,1170],M[65530]=[null,null,K.prototype.rd,K.prototype.qe,"PIR"],M[65532]=[null,null,K.prototype.Sd,K.prototype.Re,"SL"],M[65534]=[null,null,K.prototype.ud,K.prototype.te,"PSW"],M);
|
||||
Ia(function(){for(var a=E(document,"pdp11","device"),b=0;b<a.length;b++){var c,d=a[b];c=C(d);switch(c.type){case "default":c=new K(c);D(c,d);break;case "pc11":c=new bc(c);D(c,d);break;case "rl11":c=new N(c);D(c,d);break;case "rk11":c=new O(c),D(c,d)}}});var cc;if(Za){var dc=new ArrayBuffer(2);(new DataView(dc)).setUint16(0,256,!0);cc=256===(new Uint16Array(dc))[0]}else cc=!1;var ec=cc;
|
||||
function H(a,b,c,d,e,f){this.h=a;this.id=fc+=2;this.a=null;this.Na=b;this.ub=c;this.size=d||0;this.type=e||gc;this.l=e==hc;this.controller=null;Fb(this);this.wa=this.Nc=!1;if(this.size)if(f)this.controller=f,a=[null,0],this.a=a[0],ic(this,f.Hc);else if(Za)this.b=new ArrayBuffer(this.size),this.c=new DataView(this.b,0,this.size),this.j=new Uint8Array(this.b,0,this.size),this.v=new Uint16Array(this.b,0,this.size>>1),this.a=new Int32Array(this.b,0,this.size>>2),ic(this,ec?jc:kc);else{a=this.a=Array(this.size>>
|
||||
2);for(f=0;f<a.length;f++)a[f]=0;ic(this,mc)}else ic(this)}var gc=0,Pb=1,hc=2,Hb=4,Lb=["NONE","RAM","ROM","VID","H/W"],fc=0;
|
||||
H.prototype={constructor:H,parent:null,save:function(){var a,b;if(this.controller)a=null;else if(Za)for(a=Array(this.size>>2),b=0;b<a.length;b++)a[b]=this.c.getInt32(b<<2,!0);else a=this.a;return a},restore:function(a){if(this.controller)return!a;if(a&&this.size==a.length<<2){var b;if(Za)for(b=0;b<a.length;b++)this.c.setInt32(b<<2,a[b],!0);else this.a=a;return this.wa=!0}return!1},A:function(a,b){I(this.h,b,32);return 255},f:function(a,b,c){I(this.h,c,32)},C:function(a,b){return this.Tb(a++,b++)|
|
||||
this.Tb(a,b)<<8},H:function(a,b,c){this.$b(a++,b&255,c++);this.$b(a,b>>8,c)},fa:function(a){return this.a[a>>2]>>>((a&3)<<3)&255},sa:function(a,b){a&1&&I(this.h,b,64);b=a>>2;a=(a&3)<<3;var c=this.a[b]>>a;return 24>a?c&65535:c&255|(this.a[b+1]&255)<<8},va:function(a,b){var c=a>>2;a=(a&3)<<3;this.a[c]=this.a[c]&~(255<<a)|b<<a;this.wa=!0},Fa:function(a,b,c){a&1&&I(this.h,c,64);c=a>>2;a=(a&3)<<3;24>a?this.a[c]=this.a[c]&~(65535<<a)|b<<a:(this.a[c]=this.a[c]&16777215|b<<24,c++,this.a[c]=this.a[c]&-256|
|
||||
b>>8);this.wa=!0},S:function(a,b){return this.w(a,b)},Aa:function(a,b){return this.F(a,b)},na:function(a,b,c){this.l?this.f(a,b,c):this.s(a,b,c)},Da:function(a,b,c){this.l?this.f(a,b,c):this.I(a,b,c)},L:function(a){return this.j[a]},U:function(a){return this.j[a]},ga:function(a,b){a&1&&I(this.h,b,64);return this.c.getUint16(a,!0)},Ba:function(a,b){a&1&&I(this.h,b,64);return this.v[a>>1]},ma:function(a,b){this.j[a]=b;this.wa=!0},ua:function(a,b){this.j[a]=b;this.wa=!0},Ca:function(a,b,c){a&1&&I(this.h,
|
||||
c,64);this.c.setUint16(a,b,!0);this.wa=!0},Ea:function(a,b,c){a&1&&I(this.h,c,64);this.v[a>>1]=b;this.wa=!0}};function Fb(a,b,c){a.D=b;a.i=a.o=0;c&&((a.i=c.i)&&nc(a,oc,!1),(a.o=c.o)&&pc(a,oc,!1))}function pc(a,b,c){c&&a.o||(a.$b=!a.l&&b[1]||a.f,a.Jb=!a.l&&b[3]||a.H);if(c||void 0===c)a.s=b[1]||a.f,a.I=b[3]||a.H}function nc(a,b,c){c&&a.i||(a.Tb=b[0]||a.A,a.aa=b[2]||a.C);if(c||void 0===c)a.w=b[0]||a.A,a.F=b[2]||a.C}function ic(a,b){b||(b=qc);nc(a,b,void 0);pc(a,b,void 0)}
|
||||
var qc=[],mc=[H.prototype.fa,H.prototype.va,H.prototype.sa,H.prototype.Fa],oc=[H.prototype.S,H.prototype.na,H.prototype.Aa,H.prototype.Da];if(Za)var kc=[H.prototype.L,H.prototype.ma,H.prototype.ga,H.prototype.Ca],jc=[H.prototype.U,H.prototype.ua,H.prototype.Ba,H.prototype.Ea];
|
||||
function rc(a,b){y.call(this,"CPU",a,rc,1);b=a.cycles||b;var c=a.multiplier||1;this.Kb=0;this.yb=b;this.na=c;this.Pb=Math.round(this.yb/1E4)/100;this.Fa=this.Pb*this.na;this.m.O=!1;this.m.Xb=!1;this.m.Ha=a.autoStart;this.m.Db=!1;this.wb=this.Ua=0;this.xb=a.csStart;this.jb=a.csInterval;this.kb=a.csStop;this.L=[];this.qc=this.de.bind(this);F(this)}A(rc);var sc=["power","reset"];h=rc.prototype;
|
||||
h.ia=function(a,b,c,d){this.l=a;this.h=b;this.D=d;this.v=a.v;for(a=0;a<sc.length;a++)(b=this.j[sc[a]])&&this.l.ba(null,sc[a],b);this.cc();F(this)};h.cc=function(){};h.bc=function(){};h.reset=function(){};h.save=function(){return null};h.restore=function(){return!1};
|
||||
h.ka=function(a,b){var c=tc(this.l,"autoStart");null!=c?this.m.Ha="true"==c?!0:"false"==c?!1:!!c:null==this.m.Ha&&(this.m.Ha=void 0===this.j.run);if(!b){this.bc();if(a&&this.restore){uc(this);if(!this.restore(a))return!1;vc(this)}else this.reset();this.V("No debugger detected");this.m.Ha||this.V("CPU will not be auto-started, click Run to start")}return!0};h.ja=function(a){return a?this.save():!0};h.Ha=function(){return this.m.O?!0:this.m.Ha?(pb(this),!0):!1};h.lc=function(){return 0};
|
||||
function vc(a){void 0===a.xb&&(a.xb=0);void 0===a.jb&&(a.jb=-1);void 0===a.kb&&(a.kb=-1);a.m.Db=0<=a.xb&&0<a.jb;a.m.Db&&(a.wb=0,a.Ua=a.xb-a.ua)}function sb(a,b){if(a.m.Db){var c=!1;a.wb=a.wb+a.lc()|0;a.Ua-=b;0>=a.Ua&&(a.Ua+=a.jb,c=!0);0<=a.kb&&a.kb<=wc(a)&&(a.jb=a.kb=-1,vc(a),G(a),c=!0);c&&a.V(wc(a)+" cycles: checksum="+ka(a.wb))}}
|
||||
h.ba=function(a,b,c){var d=this;switch(b){case "power":case "reset":return this.j[b]=c,!0;case "run":return this.j[b]=c,c.onclick=function(){var a;if(a=d.l)if(a=d.l,a.m.R)a=!0;else{var b=null,c,k=B(a.id);for(c=0;c<k.length&&(b=k[c],b===a||b.m.ready);c++);if(c==k.length)for(c=0;c<k.length&&(b=k[c],b===a||b.m.R);c++);c==k.length&&(b=a);x("The "+b.type+" component ("+b.id+") is not "+(b.m.ready?"powered yet":"ready yet"+(b.Fb?" (waiting for notification)":""))+".");a=!1}a&&(d.m.O?G(d):pb(d))},!0;case "speed":return this.j[b]=
|
||||
c,!0;case "setSpeed":return this.j[b]=c,c.onclick=function(){xc(d,d.na<<1,!0)},c.textContent=this.Fa.toFixed(2)+"Mhz",!0}return!1};h.za=function(a){this.l&&this.l.za(a)};function rb(a,b,c){a.ua+=b;c&&(a.ma=a.a=a.I=0)}function yc(a,b){var c=1;b&&1<a.na&&a.Ea&&(c=a.Ea/a.Pb);a.nc=Math.round(1E3/30);a.zb=Math.floor(a.yb/30*c);b||(a.lb=a.zb);a.Qb=0}function wc(a){return a.ua+a.ga+a.ma-a.a}function uc(a){a.Ea=0;a.pc=0;a.ua=a.ga=a.ma=a.a=a.I=0;vc(a);xc(a,1)}
|
||||
function xc(a,b,c){if(void 0!==b){.8>a.Ea/a.Fa&&(b=1);a.na=b;b=a.Pb*a.na;if(a.Fa!=b){a.Fa=b;b=a.Fa.toFixed(2)+"Mhz";var d=a.j.setSpeed;d&&(d.textContent=b);a.V("target speed: "+b)}c&&a.l&&zc(a.l)}rb(a,a.ga);a.ga=0;a.fa=ra();a.sa=0;yc(a)}function Sb(a,b){var c=a.L.length;a.L.push([-1,b]);return c}function Ub(a,b,c,d){0<=b&&b<a.L.length&&(d||0>a.L[b][0])&&(c=a.yb*a.na/1E3*c|0,a.m.O&&(c+=Ac(a)),a.L[b][0]=c)}
|
||||
function qb(a,b){for(var c=a.L.length-1;0<=c;c--){var d=a.L[c];0>d[0]||(d[0]-=b,0>=d[0]&&(d[0]=-1,d[1]()))}}function Ac(a,b){var c=a.ma-=a.a;a.a=a.I=0;b&&(a.ma=0);return c}
|
||||
h.de=function(){if(this.m.O){this.Qb>=this.yb&&yc(this,!0);this.mb=0;this.vb=ra();if(this.sa){var a=this.vb-this.sa;a>this.nc&&(this.fa+=a,this.fa>this.vb&&(this.fa=this.vb))}try{do{for(var b,c=this.m.Db?1:this.zb,d=this.L.length-1;0<=d;d--){var e=this.L[d];0>e[0]||c>e[0]&&(c=e[0])}b=c;try{this.Ib(b)}catch(f){if("number"!=typeof f)throw f;}b=Ac(this,!0);this.mb+=b;this.ga+=b;sb(this,b);qb(this,b);this.lb-=b;if(0>=this.lb){this.lb+=this.zb;15<=++this.pc&&(this.za(),this.pc=0);break}}while(this.m.O)}catch(f){G(this);
|
||||
this.l&&this.l.stop(ra(),wc(this));Ya(this,f.stack||f.message);return}if(this.m.O){a=setTimeout;b=this.qc;this.sa=ra();c=this.nc;this.mb&&(c=Math.round(c*this.mb/this.zb));c-=this.sa-this.vb;if(d=this.sa-this.fa)this.Ea=Math.round(this.ga/(10*d))/100,864E5<=d&&(this.ua=0,xc(this));if(0>c||this.Ea<this.Fa)-1E3>c&&(this.fa-=c),c=0;this.Qb+=this.mb;this.sa+=c;a(b,c)}}};
|
||||
function pb(a){var b;a.m.error?(a.V(a.toString()+" error"),b=!0):b=!1;if(!b)if(a.m.O)a.V(a.toString()+" busy");else{xc(a);a.m.O=!0;a.m.Xb=!0;if(b=a.j.run)b.textContent="Halt";a.l&&a.l.start(a.fa,wc(a));a.D||a.status("Started");setTimeout(a.qc,0)}}h.Ib=function(){return 0};function G(a){var b=!1;if(a.m.O){Ac(a);rb(a,a.ga);a.ga=0;a.m.O=!1;if(b=a.j.run)b.textContent="Run";a.l&&a.l.stop(ra(),wc(a));b=!0;a.D||a.status("Stopped")}a.m.complete=void 0;return b}
|
||||
function Bc(a){this.Ja=+a.model||1170;this.ic=a.addrReset||0;rc.call(this,a,6666667);this.Ab=0;this.mc=255;1120>=this.Ja?(this.decode=Cc.bind(this),this.Da=this.Lc,this.Ab=8,this.mc=-1,this.sc=255,this.rc=0):(this.decode=Dc.bind(this),this.Da=this.Mc,this.sc=~(1792|(1145>this.Ja?2048:0))&65535,this.rc=1145<=this.Ja?2048:0);Ec(this);this.Va=0;this.H=null;this.Lb=[];this.m.complete=!1}A(Bc,rc);h=Bc.prototype;
|
||||
h.cc=function(){this.kc=this.h.ob.bind(this.h);this.pb=this.h.Ia.bind(this.h);this.sb=this.h.Hb.bind(this.h);this.tb=this.h.La.bind(this.h)};h.bc=function(){for(var a=192,b=0;b<this.Lb.length;b++){var c=this.Lb[b];0>c.Zb&&(c.Zb=a,a+=4)}};h.reset=function(){this.status("Model "+this.Ja);this.m.O&&G(this);Ec(this);uc(this);this.m.error=!1;this.parent.reset.call(this)};
|
||||
function Ec(a){a.o=65536;a.f=32768;a.i=65535;a.s=32768;a.G=15;a.g=[0,0,0,0,0,0,0,a.ic,-1,-2,-3,-4,-5,-6,-7,-8];a.Ka=[0,0,0,0,0,0];a.qa=[0,0,0,0];a.w=0;a.Tc=[4,2,0,1];a.J=[[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[65535,65535,65535,65535,65535,65535,65535,65535,65535,65535,65535,65535,65535,65535,65535,65535],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0]];a.Z=[[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,
|
||||
0,0,0,0,0]];a.eb=[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0];a.Vb=[0,0,0,0,0,0,0,0];a.Ub=0;a.u=0;a.C=a.F=0;a.c=a.b=a.Nb=0;a.va=-1;ob(a)}function ob(a){a.Y=0;a.Bb=0;a.Cb=0;a.ya=0;a.X=0;a.rb=0;a.cb=255;a.Sa=0;a.hb=0;a.ib=0;a.Ta=262143;a.Wa=0;a.A=0;a.H=null;a.h&&(Zb(a),a.Rc=Ob(a.h))}
|
||||
function Zb(a){a.ob=a.kc;a.Ia=a.pb;a.Hb=a.sb;a.La=a.tb;a.Sa?(a.U=65536,a.Ca=a.ya&16?4186112:253952,a.S=a.Pc,a.aa=a.$d,a.Jb=a.Ze,Jb(a.h,a.ya&16?22:18)):(a.U=0,a.Ca=57344,a.S=a.Oc,a.aa=a.Zd,a.Jb=a.Ye,Jb(a.h,16))}function Yb(a,b){b&=-3073;if(a.Y!=b){b&57344&&!(a.Y&57344)&&(a.Bb=a.A>>16&65535,a.Cb=a.A&65535);a.Y=b;a.hb=(b&96)>>5;a.ib=(b&30)>>1;var c=0;b&257&&(c=4,b&1&&(c|=2));a.Sa!=c&&(a.Sa=c,Zb(a))}}
|
||||
function Fc(a,b,c){a.ic=b;a.h.reset();ob(a);P(a,b);ac(a,0);if(c){for(b=2;5>=b;b++)a.g[b]=0;a.m.O||pb(a)}else a.D?G(a)||a.D.b():!1===c&&G(a);!a.m.O&&a.v&&a.v.stop()}h.lc=function(){return 0};h.save=function(){var a=new Q(this);a.set(0,[this.g,this.Ka,this.qa,this.eb,this.Vb,this.X,this.Ub,this.rb,this.cb,$b(this),this.va,this.w,this.u,this.Y,this.Bb,this.Cb,this.ya,this.hb,this.ib,this.J,this.Z,this.Sa,this.Ta,this.Wa,this.A]);a.set(1,[this.ua,this.na]);a.set(2,Nb(this.h));return a.data()};
|
||||
h.restore=function(a){var b=a[1];this.ua=b[1];xc(this,b[3]);a:{b=this.h;a=a[2];var c;for(c=0;c<a.length-1;c+=2){var d=a[c],e=a[c+1];if(e&&e.length<b.I){for(var f=0,g=Array(b.I),k=0;k<e.length-1;)for(var l=e[k++],m=e[k++];l--;)g[f++]=m;e=g}f=b.h[d];if(!f||!f.restore(e)){x("Unable to restore memory block "+d);b=!1;break a}}b=!0}return b};function R(a){return a.o&65536?1:0}function Gc(a){return a.s&32768?8:0}function Hc(a,b){var c=a.g[7];a.g[7]=c+b&65535;return c}function P(a,b){a.g[7]=b&65535}
|
||||
function Vb(a,b,c,d){c={Zb:b,$a:c,message:d||0,next:null};c.name=$a[b];a.Lb.push(c);return c}function Xb(a,b){var c=a.H;if(c==b)a.H=b.next;else for(;c;){var d=c.next;if(d==b){c.next=d.next;break}c=d}a.H&&(a.u|=1)}function L(a,b){if(b!=a.H){var c=a.H;if(!c||c.$a<=b.$a)b.next=c,a.H=b;else{do{var d=c.next;if(!d||d.$a<=b.$a){b.next=d;c.next=b;break}c=d}while(c)}}a.u|=1}function Ic(a){return a.u&64?(J(a,168,64,-6),!0):a.u&32?(J(a,4,32,-5),!0):a.u&16?(J(a,12,16,-7),!0):!1}
|
||||
function $b(a){return a.G=a.G&63728|Gc(a)|(a.i&65535?0:4)|(a.f&32768?2:0)|R(a)}function ac(a,b){b&=a.sc;a.s=b<<12;a.i=~b&4;a.f=b<<14;a.o=b<<16;if((b^a.G)&a.rc)for(var c=a.Ka.length;0<=--c;){var d=a.g[c];a.g[c]=a.Ka[c];a.Ka[c]=d}a.w=b>>14&3;c=a.G>>14&3;a.w!=c&&(a.qa[c]=a.g[6],a.g[6]=a.qa[a.w]);a.G=b;a.u&=-3;a.u|=a.H?2:1}h.ca=function(a){this.s=this.i=a;this.f=0};h.Ma=function(a,b){this.s=this.i=this.o=a;this.f=b||0};function Jc(a,b){a.s=a.i=a.o=b;a.f=a.s^a.o>>1}
|
||||
function Kc(a,b,c,d){a.s=a.i=a.o=b;a.f=(c^d)&(d^b)}function J(a,b,c,d){if(!a.Va){0>a.va?a.va=$b(a):a.w||(d=-4);-4==d&&(a.u&256&&(d=-1),a.u|=256,a.X|=4,a.g[6]=b=4);if(-1!=d){a.A=b|4143316992;a.w=0;var e=a.aa(b|a.U),f=a.aa(b+2&65535|a.U);ac(a,f&-12289|a.va>>2&12288);Lc(a,a.va);Lc(a,a.g[7]);P(a,e)}a.a-=5;a.u&=~(c|19);a.u|=129;a.va=-1;-1==d&&G(a);if(-4<=d)throw b;}}function Mc(a){var b=Nc(a),c=Nc(a);a.G&49152&&(c=c&-225|a.G&63712);P(a,b);ac(a,c);a.u&=-17}
|
||||
function Oc(a,b){var c=b>>13&31;31>c&&(b=a.ya&32?a.eb[c]+(b&8190)&4194302:b&-3932161);return b}
|
||||
function vb(a,b,c){var d,e,f;if(!(c&a.Sa))return f=b&65535,57344<=f&&(f|=a.Ca),f;d=b>>13;a.ya&a.Tc[a.w]||(d&=7);e=a.J[a.w][d];f=(a.Z[a.w][d]<<6)+(b&8191)&a.Ta;3932160<=f&&(f=Oc(a,f));if(a.Va)return f;f>=a.Rc&&f<a.Ca?(a.X|=32,J(a,4,0,f)):f&1&&!(c&1)&&(a.X|=64,J(a,4,0,f));var g=0;switch(e&7){case 1:g=4096;case 2:e|=128;c&4&&(g=8192);break;case 4:g=4096;case 5:c&4&&(g=4096);case 6:e|=c&4?192:128;break;default:g=32768}32512!=(e&32520)&&(e&8?e&32512&&(b&8128)<(e>>2&8128)&&(g|=16384):(b&8128)>(e>>2&8128)&&
|
||||
(g|=16384));a.J[a.w][d]=e;if(f!=(4194170&a.Ta)||a.w)a.hb=a.w,a.ib=d;g&&(g&57344&&(0<=a.va&&(g|=128),a.Y&57344||(g|=a.Y&4096|a.hb<<5|a.ib<<1,Yb(a,a.Y&-61695|g&61694)),J(a,168,64,-2)),a.Y&61440||!(f<(4191360&a.Ta)||f>(4194239&a.Ta))||(a.Y|=4096,a.Y&512&&(a.u|=64)));return f}function Nc(a){var b=a.aa(a.g[6]|a.U);a.g[6]=a.g[6]+2&65535;return b}function Lc(a,b){var c=a.g[6]-2&65535;a.g[6]=c;a.A=a.A&65535|(a.A&-65536)<<8|16121856;a.u&256||a.Da(4,-2,c);a.Jb(c,b)}
|
||||
function Pc(a,b,c,d){var e,f,g=d&8?0:a.U;switch(b){case 0:return J(a,4,0,-3),0;case 1:return 6==c&&a.Da(d,0,a.g[6]),a.a-=3,7==c?a.g[c]:a.g[c]|g;case 2:f=2;e=a.g[c];6==c&&a.Da(d,f,e);7!=c&&(e|=g,6>c&&d&1&&(f=1));a.a-=3;break;case 3:f=2;e=a.g[c];7!=c&&(e|=g);e=a.aa(e);e|=g;a.a-=7;break;case 4:f=-2;6>c&&d&1&&(f=-1);e=a.g[c]+f&65535;6==c&&a.Da(d,f,e);7!=c&&(e|=g);a.a-=4;break;case 5:f=-2;e=a.g[c]-2&65535;7!=c&&(e|=g);e=a.aa(e)|g;a.a-=8;break;case 6:return e=a.aa(Hc(a,2)),e=e+a.g[c]&65535,6==c&&a.Da(d,
|
||||
0,e),a.a-=6,e|g;case 7:return e=a.aa(Hc(a,2)),e=e+a.g[c]&65535,e=a.aa(e|a.U),a.a-=10,e|g}a.g[c]=a.g[c]+f&65535;a.A=a.A&65535|(a.A&-65536)<<8|(f<<3&248|c)<<16;return e}h.Lc=function(a,b,c){!this.w&&0>=b&&c<=this.cb&&(this.u|=32)};h.Mc=function(a,b,c){this.w||(65534<=c&&(c|=-65536),a&4&&c<=this.cb&&(c<=this.cb-32?J(this,4,0,-4):(this.X|=8,this.u|=32)))};h.Oc=function(a,b,c){return Pc(this,a,b,c)};h.Pc=function(a,b,c){return vb(this,Pc(this,a,b,c),c)};h.Zd=function(a){return this.h.Ia(this.Wa=a)};
|
||||
h.$d=function(a){return this.h.Ia(this.Wa=vb(this,a,2))};h.Ye=function(a,b){this.h.La(this.Wa=a,b)};h.Ze=function(a,b){this.h.La(this.Wa=vb(this,a,4),b)};function Qc(a,b,c){var d=a.b=b&7;(b=a.c=(b&56)>>3)?(d=Pc(a,b,d,2),c&65536||61440!==(a.G&61440)&&(d&=65535),a.w=a.G>>12&3,c=a.aa(d|c&a.U),a.w=a.G>>14&3):c=6!=d||(a.G>>2&12288)===(a.G&12288)?a.g[d]:a.qa[a.G>>12&3];return c}
|
||||
function Rc(a,b,c,d){a.A=a.A&65535|1441792;var e=a.b=b&7;(b=a.c=(b&56)>>3)?(e=Pc(a,b,e,4),c&65536||(e&=65535),a.w=a.G>>12&3,e=vb(a,e|c&65536,4),a.w=a.G>>14&3,a.La(e,d)):6!=e||(a.G>>2&12288)===(a.G&12288)?a.g[e]=d:a.qa[a.G>>12&3]=d}function Sc(a,b){var c;b>>=6;var d=a.F=b&7;(b=a.C=(b&56)>>3)?c=a.ob(a.S(b,d,3)):c=a.g[d+a.Ab]&a.mc;return c}function Tc(a,b){b>>=6;var c=a.F=b&7;return(b=a.C=(b&56)>>3)?a.Ia(a.S(b,c,2)):a.g[c+a.Ab]}function Uc(a,b){var c=a.b=b&7;b=a.c=(b&56)>>3;return Pc(a,b,c,8)}
|
||||
function Vc(a,b){var c,d=a.b=b&7;(b=a.c=(b&56)>>3)?c=a.ob(a.S(b,d,3)):c=a.g[d]&255;return c}function Wc(a,b){var c=a.b=b&7;return(b=a.c=(b&56)>>3)?a.Ia(a.S(b,c,2)):a.g[c]}function S(a,b,c,d){var e=a.b=b&7;(b=a.c=(b&56)>>3)?(e=a.Nb=a.S(b,e,7),c=0>c?a.g[-c-1]&255:c,a.Hb(e,d.call(a,c,a.ob(e))),e&1&&a.a--):(b=a.g[e],c=0>c?a.g[-c-1]&255:c,a.g[e]=b&65280|d.call(a,c,b&255))}
|
||||
function T(a,b,c,d){var e=a.b=b&7;(b=a.c=(b&56)>>3)?(e=a.S(b,e,6),a.La(e,d.call(a,0>c?a.g[-c-1]:c,a.Ia(e)))):a.g[e]=d.call(a,0>c?a.g[-c-1]:c,a.g[e])}function Xc(a,b,c,d,e){var f=a.b=b&7;(b=a.c=(b&56)>>3)?(d=a.S(b,f,5),e.call(a,(c=0>c?a.g[-c-1]&255:c)<<8),a.Hb(d,c),d&1&&a.a--):(c?(c=0>c?a.g[-c-1]&255:c,a.g[f]=a.g[f]&~d|c<<24>>24&d):a.g[f]&=~d,e.call(a,c<<8))}
|
||||
function Yc(a,b,c,d){var e=a.b=b&7;(b=a.c=(b&56)>>3)?(e=a.S(b,e,4),d.call(a,c=0>c?a.g[-c-1]:c),a.La(e,c)):(a.g[e]=c=0>c?a.g[-c-1]:c,d.call(a,c))}function U(a,b,c){c&&(P(a,a.g[7]+(b<<24>>23)),a.a-=2);a.a-=3}
|
||||
h.Ib=function(a){this.m.complete=!0;var b=a?this.m.Xb?0:1:-1;this.m.Xb=!1;this.ma=this.a=a;this.u=this.u&-5|0;do{if(this.u){if(a=this.u&11)if(a=!1,this.u&2){var c=160,d=(this.rb&224)>>5,e=this.H&&this.H.$a>d?this.H:null;e&&(c=e.Zb,d=e.$a);d>(this.G&224)>>5?(this.u&8&&(Hc(this,2),this.u&=-9),J(this,c,0,-10),d=!0):d=!1;d&&(e&&Xb(this,e),a=!0);this.H||this.rb||(this.u&=-3)}else this.u&1&&this.u++;if(a){if(this.u&4&&this.D.h(this.g[7],b)){G(this);break}if(0>b)break}if(this.u&112&&Ic(this)){if(this.u&
|
||||
4&&this.D.h(this.g[7],b)){G(this);break}if(0>b)break}}this.u=this.u&15|this.G&16;a=this.A=this.g[7];e=this.aa(a);this.g[7]=a+2&65535;this.decode(e)}while(0<this.a);return this.m.complete?this.ma-this.a:void 0===this.m.complete?0:-1};Ia(function(){for(var a=E(document,"pdp11","cpu"),b=0;b<a.length;b++){var c=a[b],d=C(c),d=new Bc(d);D(d,c)}});function Zc(a,b){var c=b+a;this.s=this.i=this.o=c;this.f=(a^c)&(b^c);return c&65535}
|
||||
function $c(a,b){var c=b+a,d=c<<8;this.s=this.i=this.o=d;this.f=(a<<8^d)&(b<<8^d);return c&255}function ad(a,b){a=b<<1;Jc(this,a);return a&65535}function bd(a,b){a=b<<1;Jc(this,a<<8);return a&255}function cd(a,b){a=b&32768|b>>1|b<<16;Jc(this,a);return a&65535}function dd(a,b){a=b&128|b>>1|b<<8;Jc(this,a<<8);return a&255}function ed(a,b){a=b&~a;this.ca(a);return a}function fd(a,b){a=b&~a;this.ca(a<<8);return a}function gd(a,b){a|=b;this.ca(a);return a}function hd(a,b){a|=b;this.ca(a<<8);return a}
|
||||
function id(a,b){a=~b|65536;this.Ma(a);return a&65535}function jd(a,b){a=~b|256;this.Ma(a<<8);return a&255}function kd(a,b){this.s=this.i=a=b-a;this.f=b&(b^a);return a&65535}function ld(a,b){a=b-a;var c=a<<8;b<<=8;this.s=this.i=c;this.f=b&(b^c);return a&255}function md(a,b){this.s=this.i=a=b+a;this.f=a&(b^a);return a&65535}function nd(a,b){a=b+a;var c=a<<8;this.s=this.i=c;this.f=c&(b<<8^c);return a&255}function od(a,b){a=-b;this.Ma(a,a&b&32768);return a&65535}
|
||||
function pd(a,b){a=-b;this.Ma(a<<8,(a&b&128)<<8);return a&255}function qd(a,b){a=b<<1|this.o>>16&1;Jc(this,a);return a&65535}function rd(a,b){a=b<<1|this.o>>16&1;Jc(this,a<<8);return a&255}function sd(a,b){a=(this.o&65536|b)>>1|b<<16;Jc(this,a);return a&65535}function td(a,b){a=((this.o&65536)>>8|b)>>1|b<<8;Jc(this,a<<8);return a&255}function ud(a,b){var c=b-a;Kc(this,c,a,b);return c&65535}function vd(a,b){var c=b-a;Kc(this,c<<8,a<<8,b<<8);return c&255}
|
||||
function wd(a,b){this.s=this.i=b&65280;this.f=this.o=0;return(b<<8|b>>8)&65535}function xd(a,b){a^=b;this.ca(a);return a&65535}function yd(a){T(this,a,Tc(this,a),Zc);this.a-=this.c?9+(this.F&&6<=this.b?1:0):(this.C?5:3)+(7==this.b?2:0)}
|
||||
function zd(a){var b=Wc(this,a);a=a>>6&7;var c=this.g[a];c&32768&&(c|=4294901760);this.o=this.f=0;b&=63;if(b&32)b=64-b,16<b&&(b=16),this.o=c<<17-b,c>>=b;else if(b)if(16<b)this.f=c,c=0;else{this.o=c<<=b;var d=c>>15&65535;d&&65535!==d&&(this.f=32768)}this.g[a]=c&65535;this.s=this.i=c;this.a-=(this.c?6:7)+b}
|
||||
function Ad(a){var b=Wc(this,a);a=a>>6&7;var c=this.g[a]<<16|this.g[a|1];this.o=this.f=0;b&=63;if(b&32){b=64-b;32<b&&(b=32);var d=c>>b-1;this.o=d<<16;d>>=1;c&2147483648&&(d|=4294967295<<32-b)}else b?(d=c<<b-1,this.o=d>>15,d<<=1,32<b&&(b=32),(c>>=32-b)&&4294967295!==(c|4294967295<<b&4294967295)&&(this.f=32768)):d=c;this.g[a]=d>>16&65535;this.g[a|1]=d&65535;this.s=d>>16;this.i=d>>16|d;this.a-=(this.c?6:7)+b}function Bd(a){U(this,a,!R(this))}function Cd(a){U(this,a,R(this))}
|
||||
function Dd(a){T(this,a,Tc(this,a),ed);this.a-=this.c?9+(this.F&&6<=this.b?1:0):(this.C?5:3)+(7==this.b?2:0)}function Ed(a){S(this,a,Sc(this,a),fd);this.a-=this.c?9+(this.F&&6<=this.b?1:0):(this.C?5:3)+(7==this.b?2:0)}function Fd(a){T(this,a,Tc(this,a),gd);this.a-=this.c?9+(this.F&&6<=this.b?1:0):(this.C?5:3)+(7==this.b?2:0)}function Gd(a){S(this,a,Sc(this,a),hd);this.a-=this.c?9+(this.F&&6<=this.b?1:0):(this.C?5:3)+(7==this.b?2:0)}
|
||||
function Hd(a){var b=Tc(this,a);a=Wc(this,a);this.ca((0>b?this.g[-b-1]:b)&a);this.a-=this.c?4+(this.F&&6<=this.b?1:0):(this.C?4:3)+(7==this.b?2:0)}function Id(a){var b=Sc(this,a);a=Vc(this,a);this.ca(((0>b?this.g[-b-1]&255:b)&a)<<8);this.a-=this.c?4+(this.F&&6<=this.b?1:0):(this.C?4:3)+(7==this.b?2:0)}function Jd(a){U(this,a,this.i&65535?0:4)}function Kd(a){U(this,a,!Gc(this)==!(this.f&32768))}function Ld(a){U(this,a,!!(this.i&65535)&&!Gc(this)==!(this.f&32768))}
|
||||
function Md(a){U(this,a,!R(this)&&!!(this.i&65535))}function Nd(a){U(this,a,(this.i&65535?0:4)||!Gc(this)!=!(this.f&32768))}function Od(a){U(this,a,R(this)||(this.i&65535?0:4))}function Pd(a){U(this,a,!Gc(this)!=!(this.f&32768))}function Qd(a){U(this,a,Gc(this))}function Rd(a){U(this,a,!!(this.i&65535))}function Sd(a){U(this,a,!Gc(this))}function Td(){J(this,12,0,-9)}function Ud(a){U(this,a,!0)}function Vd(a){U(this,a,!(this.f&32768))}function Wd(a){U(this,a,this.f&32768?2:0)}
|
||||
function V(a){a&1&&(this.o=0);a&2&&(this.f=0);a&4&&(this.i=1);a&8&&(this.s=0);this.a-=5}function Xd(a){var b=Tc(this,a);a=Wc(this,a);var c=(b=0>b?this.g[-b-1]:b)-a;Kc(this,c,a,b);this.a-=this.c?4+(this.F&&6<=this.b?1:0):(this.C?4:3)+(7==this.b?2:0)}function Yd(a){var b=Sc(this,a);a=Vc(this,a);var c=(b=(0>b?this.g[-b-1]&255:b)<<8)-(a<<=8);Kc(this,c,a,b);this.a-=this.c?4+(this.F&&6<=this.b?1:0):(this.C?4:3)+(7==this.b?2:0)}
|
||||
function Zd(a){var b=Wc(this,a);if(b){a=a>>6&7;var c=this.g[a]<<16|this.g[a|1];this.o=this.f=0;b&32768&&(b|=-65536);var d=~~(c/b);-32768<=d&&32767>=d?(this.g[a]=d&65535,this.g[a|1]=c-d*b&65535,this.i=d>>16|d,this.s=d>>16):(this.f=32768,this.i=d>>15|d,this.s=c>>16,-1===b&&65534===this.g[a]&&(this.g[a]=this.g[a|1]=1));this.a-=53}else this.i=this.s=0,this.f=32768,this.o=65536,this.a-=7}function $d(){J(this,24,0,-9);this.a-=20}
|
||||
function ae(){this.G&49152?(this.X|=128,J(this,4,0,-8)):(this.v&&1120==this.Ja&&this.v.setData(this.g[0],!0),this.D?this.D.l():G(this));this.a-=7}function be(){J(this,16,0,-9);this.a-=20}var ce=[0,7,7,10,7,11,9,13];function de(a){this.I=this.a;P(this,Uc(this,a));this.a=this.I-ce[this.c]}var ee=[0,14,14,17,14,18,16,20];function fe(a){this.I=this.a;var b=Uc(this,a);a=a>>6&7;Lc(this,this.g[a]);this.g[a]=this.g[7];P(this,b);this.a=this.I-ee[this.c]}var ge=[3,9,9,13,10,14,12,16,4,9,9,13,10,14,13,17];
|
||||
function he(a){var b=Tc(this,a);this.I=this.a;Yc(this,a,b,this.ca);this.a=this.I-ge[(this.C?8:0)+this.c]+(7!=this.b||this.c?0:2)}function ie(a){var b=Sc(this,a);Xc(this,a,b,65535,this.ca);this.a-=this.c?9+(this.F&&6<=this.b?1:0):(this.C?5:3)+(7==this.b?2:0)}var je=[7,13,13,17,14,18,17,21];
|
||||
function ke(a){var b=Wc(this,a);a=a>>6&7;b&32768&&(b|=-65536);var c=this.g[a];c&32768&&(c|=-65536);b=~~(b*c);this.g[a]=b>>16&65535;this.g[a|1]=b&65535;this.s=b>>16;this.i=this.s|b;this.f=0;this.o=-32768>b||32767<b?65536:0;this.a-=23}function le(){this.a-=5}function me(){this.G&49152||(this.h.reset(),ob(this),this.v&&this.v.setData(this.g[0],!0));this.a-=667}function ne(a){if(a&8)J(this,8,0,-9);else{var b=Nc(this);a&=7;7==a?P(this,b):(P(this,this.g[a]),this.g[a]=b);this.a-=9}}
|
||||
function oe(){Mc(this);this.a-=13}function W(a){a&1&&(this.o=65536);a&2&&(this.f=32768);a&4&&(this.i=0);a&8&&(this.s=32768);this.a-=5}function pe(a){var b=(a&448)>>6;if(this.g[b]=this.g[b]-1&65535)P(this,this.g[7]-((a&63)<<1)),this.a+=1;this.a-=6}function qe(a){T(this,a,Tc(this,a),ud);this.a-=this.c?9+(this.F&&6<=this.b?1:0):(this.C?5:3)+(7==this.b?2:0)}function re(a){T(this,a,0,wd);this.a-=this.c?9:3+(7==this.b?2:0)}function se(){J(this,28,0,-9)}
|
||||
function te(){this.v&&(this.v.la=this.g[7],this.v.setData(this.g[0],!0));this.u|=8;Hc(this,-2);this.a-=3}function ue(a){T(this,a,this.g[(a>>6&7)+this.Ab],xd);this.a-=this.c?9:3+(7==this.b?2:0)}function Y(){J(this,8,0,-9)}function Cc(a){ve[a>>12].call(this,a)}function we(a){xe[a>>6&3].call(this,a)}function ye(a){ze[a>>6&3].call(this,a)}function Ae(a){Be[a>>6&3].call(this,a)}function Ce(a){De[a&15].call(this,a)}function Ee(a){Fe[a&15].call(this,a)}function Ge(a){He[a>>6&3].call(this,a)}
|
||||
function Ie(a){Je[a>>6&3].call(this,a)}function Ke(a){Le[a>>6&3].call(this,a)}
|
||||
var ve=[function(a){Me[a>>8&15].call(this,a)},he,Xd,Hd,Dd,Fd,yd,Y,function(a){Ne[a>>8&15].call(this,a)},ie,Yd,Id,Ed,Gd,qe,Y],Me=[function(a){Oe[a>>4&15].call(this,a)},Ud,Rd,Jd,Kd,Pd,Ld,Nd,fe,fe,we,ye,Ae,Y,Y,Y],xe=[function(a){Yc(this,a,0,this.Ma);this.a-=this.c?9:3+(7==this.b?2:0)},function(a){T(this,a,0,id);this.a-=this.c?9:3+(7==this.b?2:0)},function(a){T(this,a,1,md);this.a-=this.c?9:3+(7==this.b?2:0)},function(a){T(this,a,1,kd);this.a-=this.c?9:3+(7==this.b?2:0)}],ze=[function(a){T(this,a,0,od);
|
||||
this.a-=this.c?11:6},function(a){T(this,a,R(this)?1:0,Zc);this.a-=this.c?9:3+(7==this.b?2:0)},function(a){T(this,a,R(this)?1:0,ud);this.a-=this.c?9:3+(7==this.b?2:0)},function(a){a=Wc(this,a);this.Ma(a);this.a-=this.c?4:3+(7==this.b?2:0)}],Be=[function(a){T(this,a,0,sd);this.a-=this.c?9:3+(7==this.b?2:0)},function(a){T(this,a,0,qd);this.a-=this.c?9:3+(7==this.b?2:0)},function(a){T(this,a,0,cd);this.a-=this.c?9:3+(7==this.b?2:0)},function(a){T(this,a,0,ad);this.a-=this.c?9:3+(7==this.b?2:0)}],Oe=[function(a){Pe[a&
|
||||
15].call(this,a)},Y,Y,Y,de,de,de,de,ne,Y,Ce,Ee,re,re,re,re],Pe=[ae,te,oe,Td,be,me,Y,Y,Y,Y,Y,Y,Y,Y,Y,Y],De=[le,function(){this.o=0;this.a-=5},function(){this.f=0;this.a-=5},V,function(){this.i=1;this.a-=5},V,V,V,function(){this.s=0;this.a-=5},V,V,V,V,V,V,V],Fe=[le,function(){this.o=65536;this.a-=5},function(){this.f=32768;this.a-=5},W,function(){this.i=0;this.a-=5},W,W,W,function(){this.s=32768;this.a-=5},W,W,W,W,W,W,W],Ne=[Sd,Qd,Md,Od,Vd,Wd,Bd,Cd,$d,se,Ge,Ie,Ke,Y,Y,Y],He=[function(a){Xc(this,a,0,
|
||||
255,this.Ma);this.a-=this.c?9:3+(7==this.b?2:0)},function(a){S(this,a,0,jd);this.a-=this.c?9:3+(7==this.b?2:0)},function(a){S(this,a,1,nd);this.a-=this.c?9:3+(7==this.b?2:0)},function(a){S(this,a,1,ld);this.a-=this.c?9:3+(7==this.b?2:0)}],Je=[function(a){S(this,a,0,pd);this.a-=this.c?11:6},function(a){S(this,a,R(this)?1:0,$c);this.a-=this.c?9:3+(7==this.b?2:0)},function(a){S(this,a,R(this)?1:0,vd);this.a-=this.c?9:3+(7==this.b?2:0)},function(a){a=Vc(this,a);this.Ma(a<<8);this.a-=this.c?4:3+(7==this.b?
|
||||
2:0)}],Le=[function(a){S(this,a,0,td);this.a-=this.c?9+(this.Nb&1):3+(7==this.b?2:0)},function(a){S(this,a,0,rd);this.a-=this.c?9:3+(7==this.b?2:0)},function(a){S(this,a,0,dd);this.a-=this.c?9+(this.Nb&1):3+(7==this.b?2:0)},function(a){S(this,a,0,bd);this.a-=this.c?9:3+(7==this.b?2:0)}];function Dc(a){Qe[a>>12].call(this,a)}
|
||||
var Qe=[function(a){Re[a>>8&15].call(this,a)},he,Xd,Hd,Dd,Fd,yd,function(a){Se[a>>8&15].call(this,a)},function(a){Te[a>>8&15].call(this,a)},ie,Yd,Id,Ed,Gd,qe,Y],Re=[function(a){Ue[a>>4&15].call(this,a)},Ud,Rd,Jd,Kd,Pd,Ld,Nd,fe,fe,we,ye,Ae,function(a){Ve[a>>6&3].call(this,a)},Y,Y],Ve=[function(a){a=this.g[7]+((a&63)<<1)&65535;var b=this.aa(a|this.U);P(this,this.g[5]);this.g[6]=a+2&65535;this.g[5]=b;this.a-=8},function(a){a=Qc(this,a,0);this.ca(a);Lc(this,a);this.a-=11},function(a){var b=Nc(this);this.I=
|
||||
this.a;this.ca(b);Rc(this,a,0,b);this.a=this.I-je[this.c]},function(a){Yc(this,a,Gc(this)?65535:0,this.ca);this.a-=this.c?9:3+(7==this.b?2:0)}],Ue=[function(a){We[a&15].call(this,a)},Y,Y,Y,de,de,de,de,ne,function(a){a&8?(this.G&49152||(this.G=this.G&-225|(a&7)<<5,this.u|=1,this.u&=-3),this.a-=5):J(this,8,0,-9)},Ce,Ee,re,re,re,re],We=[ae,te,function(){Mc(this);this.u|=this.G&16;this.a-=13},Td,be,me,oe,function(){J(this,8,0,-9)},Y,Y,Y,Y,Y,Y,Y,Y],Se=[ke,ke,Zd,Zd,zd,zd,Ad,Ad,ue,ue,Y,Y,Y,Y,pe,pe],Te=[Sd,
|
||||
Qd,Md,Od,Vd,Wd,Bd,Cd,$d,se,Ge,Ie,Ke,function(a){Xe[a>>6&3].call(this,a)},Y,Y],Xe=[Y,function(a){a=Qc(this,a,65536);this.ca(a);Lc(this,a);this.a-=11},function(a){var b=Nc(this);this.I=this.a;this.ca(b);Rc(this,a,65536,b);this.a=this.I-je[this.c]},Y];
|
||||
function Ye(a){y.call(this,"ROM",a,Ye,128);this.da=this.c=null;this.i=a.addr;this.b=a.size;this.o=!1;this.f=a.alias;this.l=a.file;this.s=r(this.l);if(this.l){a=this.l;var b=la(this.s);"json"!=b&&"hex"!=b&&(a=ua()+"/api/v1/dump?file="+this.l+"&format=bytes&decimal=true");var c=this;u(a,null,!0,function(a,b,f){f?(c.B("Unable to load ROM resource (error "+f+": "+a+")"),c.l=null):(Ta(c.Ba,a,b),(a=ta(a,b))?(c.c=a.M,c.da=a.da):c.l=null);Ze(c)})}}A(Ye);h=Ye.prototype;
|
||||
h.ia=function(a,b,c,d){this.h=b;this.a=c;this.D=d;Ze(this)};h.ka=function(){this.da&&(this.D&&this.D.a(this.id,this.i,this.b,this.da),delete this.da);return!0};h.ja=function(){return!0};
|
||||
function Ze(a){if(!Xa(a)){if(a.l){if(!a.c||!a.h)return;a.b||(a.b=a.c.length);if(a.c.length!=a.b)Ya(a,"ROM size ("+ka(a.c.length,8,!0)+") does not match specified size ("+ka(a.b,8,!0)+")");else{var b;a:{b=a.i;a.status(a.b+"-byte ROM at "+ja(b));if(57344<=b&&b<57344+Ab){var c={};b=(c[b]=[Ye.prototype.Nd,Ye.prototype.Me,null,null,null,a.b>>1],c);if(fb(a.h,a,b)){b=a.o=!0;break a}}else if(Gb(a.h,b,a.b,hc)){for(c=0;c<a.c.length;c++)a.h.sb(b+c,a.c[c]);b=!0;break a}b=!1}if(b){b=[];"number"==typeof a.f?b.push(a.f):
|
||||
null!=a.f&&a.f.length&&(b=a.f);for(c=0;c<b.length;c++){for(var d=a,e=b[c],f=d.h,g=d.b,k=[],l=d.i>>>f.c;0<g&&l<f.h.length;)k.push(f.h[l++]),g-=f.b;f=d.h;d=d.b;g=0;for(e>>>=f.c;0<d&&e<f.h.length;){l=k[g++];if(!l)break;f.h[e++]=l;d-=f.b}}a.o||delete a.c}}}F(a)}}h.Nd=function(a){return this.c[a-this.i]};h.Me=function(){};Ia(function(){for(var a=E(document,"pdp11","rom"),b=0;b<a.length;b++){var c=a[b],d=C(c),d=new Ye(d);D(d,c)}});
|
||||
function $e(a){y.call(this,"RAM",a,$e);this.da=this.c=null;this.l=a.addr;this.f=a.size;this.pa=a.load;this.oa=a.exec;this.i=!1;this.b=a.file;this.o=r(this.b);if(this.b){a=this.b;var b=la(this.o);"json"!=b&&"hex"!=b&&(a=ua()+"/api/v1/dump?file="+this.b+"&format=bytes&decimal=true");var c=this;u(a,null,!0,function(a,b,f){f?(c.B("Unable to load RAM resource (error "+f+": "+a+")"),c.b=null):(Ta(c.Ba,a,b),(a=ta(a,b))?(c.c=a.M,c.da=a.da,null==c.pa&&(c.pa=a.pa),null==c.oa&&(c.oa=a.oa)):c.b=null);af(c)})}}
|
||||
A($e);$e.prototype.ia=function(a,b,c,d){this.h=b;this.a=c;this.D=d;af(this)};$e.prototype.ka=function(){this.da&&(this.D&&this.D.a(this.id,this.l,this.f,this.da),delete this.da);return!0};$e.prototype.ja=function(){return!0};function af(a){if(a.h&&(!a.i&&a.f&&(Gb(a.h,a.l,a.f,Pb)?a.i=!0:a.f=0),!Xa(a))){if(!a.i)x("No RAM allocated");else if(a.b){if(!a.c||!a.h)return;bf(a,a.c,a.pa,a.oa,a.l)}F(a)}}
|
||||
$e.prototype.reset=function(){if(this.i){for(var a=this.h,b=this.l,c=this.f,d=b&a.l,b=b>>>a.c;0<c&&b<a.h.length;){var e=a.h[b],f=c,g=0,k,d=d||0,g=g&255;void 0===f&&(f=e.size);if(Za&&e.j)for(k=d;f--&&k<e.j.length;k++)e.j[k]=g;else for(k=d;f--&&k<e.size;k++)e.s(d,g,e.Na+d);c-=a.b;b++;d=0}this.c&&bf(this,this.c,this.pa,this.oa,this.l,!0)}};
|
||||
function bf(a,b,c,d,e,f){var g=!1,k=!1;if(null==c)for(var l=0;l<b.length-1;){var m=b[l]&255|(b[l+1]&255)<<8;if(m)if(m&255){if(1!=m)break;if(l+6>=b.length)break;for(var l=l+2,p=b[l++]&255|(b[l++]&255)<<8,t=b[l++]&255|(b[l++]&255)<<8,m=m+((p&255)+(p>>8)+(t&255)+(t>>8)),w=l,v=p-=6;0<p&&l<b.length;)m+=b[l++]&255,p--;if(p||l>=b.length)break;m+=b[l++]&255;if(m&255)break;if(v)for(;v--;)a.h.sb(t++,b[w++]&255);else t&1?g=!0:null==d&&(d=t);k=!0}else l++;else l+=2}if(!k&&(null==c&&(c=e),null!=c)){for(e=0;e<
|
||||
b.length;e++)a.h.sb(c+e,b[e]);k=!0}if(k){if(null==d||g)G(a.a),f=!1;null!=d&&Fc(a.a,d,f)}return k}Ia(function(){for(var a=E(document,"pdp11","ram"),b=0;b<a.length;b++){var c=a[b],d=C(c),d=new $e(d);D(d,c)}});function cf(a){y.call(this,"Keyboard",a,cf,1024);F(this)}A(cf);cf.prototype.ba=function(){return!1};cf.prototype.ia=function(a,b,c,d){this.l=a;this.a=c;this.D=d};Ia(function(){for(var a=E(document,"pdp11","keyboard"),b=0;b<a.length;b++){var c=a[b],d=C(c),d=new cf(d);D(d,c)}});
|
||||
function Z(a){this.A=a.adapter;this.L=a.baudReceive||9600;this.ma=a.baudTransmit||9600;this.sa=a.upperCase;this.f=this.o=null;this.fa=a.tabSize;this.S=a.charBOL;this.s=0;this.w=!0;y.call(this,"SerialPort",a,Z,262144);var b=a.binding;if("console"==b)this.o="";else{var c;a=df;b&&(void 0===c&&(c="Panel"),(c=Va(c,this.id))&&(b=c.j[b])&&this.ba(null,a,b))}this.i=this.F=this.H=null;this.exports={connect:this.oc,receiveData:this.Gb,receiveStatus:this.ce}}A(Z);var df="buffer";h=Z.prototype;
|
||||
h.ba=function(a,b,c){var d=this;switch(b){case df:return this.j[b]=this.f=c,c.onkeydown=function(a){a=a||window.event;var b=0,c=a.keyCode;8==c?b=a.altKey?n.dc:n.zc:46==c?b=n.dc:a.ctrlKey&&c>=n.ac&&c<=n.Gc&&(b=c-(n.ac-n.wc));b&&(a.preventDefault&&a.preventDefault(),d.Gb(b));return!0},c.onkeypress=function(a){a=a||window.event;var b=a.which||a.keyCode;a.altKey&&b==n.yc&&(b=n.xc);d.Gb(b);a.preventDefault&&a.preventDefault();return!0},c.onpaste=function(a){a.stopPropagation&&a.stopPropagation();a.preventDefault&&
|
||||
a.preventDefault();(a=a.clipboardData||window.clipboardData)&&d.Gb(a.getData("Text"))},c.removeAttribute("readonly"),!0}return!1};
|
||||
h.ia=function(a,b,c,d){this.l=a;this.h=b;this.a=c;this.D=d;var e=this;this.U=Vb(this.a,this.A?-1:48,4,262144);this.ga=Sb(this.a,function(){var a;a=-1;e.v.length&&(a=e.v.shift()&255,e.sa&&97<=a&&122>a&&(a-=32),Ub(e.a,e.ga,1E3/Math.round(e.L/10)));0<=a&&(e.C=a,e.b&128?e.C|=49152:e.b|=128,e.b&64&&L(c,e.U))});this.I=Vb(this.a,this.A?-1:52,4,262144);this.na=Sb(this.a,function(){e.c|=128;e.c&64&&L(c,e.I)});fb(b,this,ef,this.A?64832+8*(this.A-1)-65392:0);hb(b,this.reset.bind(this));F(this)};
|
||||
h.oc=function(a){if(!this.i){var b=tc(this.l,"connection");if(b){var c=b.split("->");if(2==c.length){var d=pa(c[0]);if(d!=this.Aa)return;c=pa(c[1]);if(this.i=Ua(c)){var e=this.i.exports;if(e){var f=e.connect;f&&f.call(this.i,this.w);if(this.F=e.receiveData){this.w=a;this.H=e.receiveStatus;this.status(this.Ba+"."+d+" connected to "+c);return}}}}this.status("Unable to establish connection: "+b)}}};
|
||||
h.ka=function(a,b){if(!b)if(this.oc(this.w),!a||!this.restore)this.reset();else if(!this.restore(a))return!1;return!0};h.ja=function(a){return a?this.save():!0};h.reset=function(){ff(this)};h.save=function(){var a=new Q(this);a.set(0,[]);return a.data()};h.restore=function(){return ff(this)};function ff(a){a.C=0;a.b=8192;a.c=128;a.v=[];return!0}
|
||||
h.Gb=function(a){if("number"==typeof a)this.v.push(a);else if("string"==typeof a)for(var b=0,c,d=0;d<a.length;d++){c=b;b=a.charCodeAt(d);if(10==b){if(13==c)continue;b=13}this.v.push(b)}else this.v=this.v.concat(a);Ub(this.a,this.ga,1E3/Math.round(this.L/10));return!0};h.ce=function(a){var b=this.b;this.b&=-12289;a&32&&(this.b|=8192);a&256&&(this.b|=4096);b!=this.b&&(this.b|=32768,this.b&32&&L(this.a,this.U))};h.Ad=function(){var a=this.b&65534;this.b&=-32769;return a};
|
||||
h.ze=function(a){var b=a^this.b;this.b=this.b&-112|a&111;this.H&&b&6&&(b=0,b=this.w?b|(a&4?32:0)|(a&2?320:0):b|(a&4?16:0)|(a&2?1048576:0),this.H.call(this.i,b))};h.zd=function(){this.b&=-129;return this.C};h.ye=function(){};h.be=function(){return this.c};h.af=function(a){this.c&128&&(a&64?L(this.a,this.I):Xb(this.a,this.I));this.c=this.c&-70|a&69};h.ae=function(){return 0};
|
||||
h.$e=function(a){a&=255;this.F&&this.F.call(this.i,a);a&=127;if(this.f)if(13==a)this.s=0;else if(8==a)this.f.value=this.f.value.slice(0,-1),0<this.s&&this.s--;else{if(a){var b;b=(b=13!=a&&10!=a?qa[a]:null)?"<"+b+">":String.fromCharCode(a);var c=b.length;32>a&&1==c&&(c=0);9==a&&(a=this.fa||8,c=a-this.s%a,this.fa&&(b=" ".slice(0,c)));this.S&&!this.s&&c&&(b=String.fromCharCode(this.S)+b);this.f.value+=b;this.f.scrollTop=this.f.scrollHeight;this.s+=c}}else if(null!=
|
||||
this.o){if(10==a||1024<=this.o.length)this.V(this.o),this.o="";10!=a&&(this.o+=String.fromCharCode(a))}Ub(this.a,this.na,1E3/Math.round(this.ma/10));this.c&=-129};var gf={},ef=(gf[65392]=[null,null,Z.prototype.Ad,Z.prototype.ze,"RCSR"],gf[65394]=[null,null,Z.prototype.zd,Z.prototype.ye,"RBUF"],gf[65396]=[null,null,Z.prototype.be,Z.prototype.af,"XCSR"],gf[65398]=[null,null,Z.prototype.ae,Z.prototype.$e,"XBUF"],gf);
|
||||
Ia(function(){for(var a=E(document,"pdp11","serial"),b=0;b<a.length;b++){var c=a[b],d=C(c),d=new Z(d);D(d,c)}});function bc(a){y.call(this,"PC11",a,bc);this.C=hf(this,a.autoMount);this.c=0;this.S=a.baudReceive||3600;this.v=this.w=this.b=0;this.s=[];this.o=jf;this.f=kf;this.A=this.i="";this.M=this.pa=this.oa=null;this.I=-1;this.F=!Ba("Mobi")&&window&&"FileReader"in window}A(bc);var jf="",kf=0;
|
||||
function hf(a,b){if(b&&"string"==typeof b)try{b=eval("("+b+")")}catch(c){x(a.type+" auto-mount error: "+c.message+" ("+b+")"),b=null}return b||{}}h=bc.prototype;
|
||||
h.ba=function(a,b,c){var d=this,e=kf;switch(b){case "listTapes":return this.j[b]=c,c.onchange=function(){var a=d.j.descTape,b=c.options[c.selectedIndex];if(a&&b){var e={};if(b=b.getAttribute("data-value"))try{e=eval("("+b+")")}catch(l){x("PC11 option error: "+l.message)}b=e.desc;void 0===b&&(b="");e=e.href;void 0!==e&&(b='<a href="'+e+'" target="_blank">'+b+"</a>");a.innerHTML=b}},!0;case "descTape":return this.j[b]=c,!0;case "readTape":e=2;case "loadTape":return e||(e=1),this.j[b]=c,c.onclick=function(){var a=
|
||||
d.j.listTapes;a&&lf(d,a.options[a.selectedIndex].text,a.value,e)},!0;case "mountTape":if(!this.F){c.parentNode.removeChild(c);break}this.j[b]=c;c.addEventListener("change",function(){var a=c.children[0];a.children[1].disabled=!a.children[0].files.length});c.onsubmit=function(a){if(a=a.currentTarget[1].files[0]){var b=a.name;lf(d,r(b,!0),b,1,a)}return!1};return!0;case "readProgress":return this.j[b]=c,!0}return!1};
|
||||
h.ia=function(a,b,c,d){this.l=a;this.h=b;this.a=c;this.D=d;this.L=mf(a);var e=this;if(a=hf(this,tc(this.l,"autoMount")))for(var f in a)"PTR"==f&&(this.C[f]=a[f]);this.H=Vb(this.a,56,4,4096);this.U=Sb(this.a,function(){1==(e.b&32769)&&!(e.b&128)&&e.v<e.s.length&&(e.w=e.s[e.v++]&255,nf(e,e.v/e.s.length*100),e.b|=128,e.b&=-2049,e.b&64&&L(e.a,e.H))});fb(b,this,of);hb(b,this.reset.bind(this));pf(this,"None",jf,!0);this.F&&pf(this,"Local Tape","?");pf(this,"Remote Tape","??");qf(this)||F(this)};
|
||||
h.ka=function(a,b){if(!b)if(!a||!this.restore)this.reset();else if(!this.restore(a))return!1;return!0};h.ja=function(a){return a?this.save():!0};h.reset=function(){this.b&=-2241;this.w=0};function qf(a){a.c=0;var b=a.C.PTR;if(b){var c=b.path||"";if(!(b=b.name))a:{if((b=a.j.listTapes)&&b.options)for(var d=0;d<b.options.length;d++){var e=b.options[d];if(e.value==c){b=e.text;break a}}b=r(c,!0)}c&&b?rf(a,b,c,1,!0):sf(a)}return!!a.c}
|
||||
function lf(a,b,c,d,e){if(c)if("?"==c)a.B('Use "Choose File" and "Mount" to select and load a local tape.');else{if("??"==c){c=window.prompt("Enter the URL of a remote tape image.","")||"";if(!c)return;b=r(c);a.status("Attempting to load "+c+' as "'+b+'"');a.o="??"}else a.o=c;rf(a,b,c,d,!1,e)}else tf(a,!1)}function rf(a,b,c,d,e,f){var g=-1;if(a.i.toLowerCase()!=c.toLowerCase()||a.f!=d)g++,tf(a,!0),a.m.Oa?a.B("PC11 busy"):(e&&a.c++,uf(a,b,c,d,f)?g++:a.m.Oa=!0);g&&vf(a,a.A,a.i,a.f,a.M,a.pa,a.oa)}
|
||||
function uf(a,b,c,d,e){var f=c;if(e){var g=new FileReader;g.onload=function(){var e=g.result;e&&(e=new Uint8Array(e,0,e.byteLength),vf(a,b,c,d,e),a.o="?");sf(a)};g.readAsArrayBuffer(e);return!0}0>c.indexOf("/api/v1/dump")&&(e=la(c),f="json"==e||"gz"==e?encodeURI(c):ua()+"/api/v1/dump?path="+encodeURIComponent(c)+"&format=json");return!!u(f,null,!0,function(e,f,g){var k=0>g&&a.l&&!a.l.m.R;g?a.B('Unable to load tape "'+b+'" (error '+g+": "+e+")",k):(Ta(a.Ba,e,f),(e=ta(e,f))&&vf(a,b,c,d,e.M,e.pa,e.oa));
|
||||
a.m.Oa=!1;a.c&&(a.c--,a.c||F(a));sf(a)})}function pf(a,b,c,d){if((a=a.j.listTapes)&&a.options){for(var e=0;e<a.options.length;e++)if(a.options[e].value==c)return;e=document.createElement("option");e.text=b;e.value=c;d&&a.childNodes[0]?a.insertBefore(e,a.childNodes[0]):a.appendChild(e)}}function sf(a){var b=a.j.listTapes;if(b&&b.options){a=a.o||a.i;for(var c=0;c<b.options.length;c++)if(b.options[c].value==a){b.selectedIndex!=c&&(b.selectedIndex=c);break}c==b.options.length&&(b.selectedIndex=0)}}
|
||||
function nf(a,b){b|=0;if(b!==a.I){var c=a.j.readProgress;c&&(c=(c=E(c,"pcjs-progress-bar"))&&c[0])&&c.style&&(c.style.width=b+"%");a.I=b}}function vf(a,b,c,d,e,f,g){a.A=b;a.i=c;a.f=d;a.M=e;a.pa=f;a.oa=g;2==d?a.L&&bf(a.L,e,f,g,null,!1)?a.status('Read tape "'+b+'"'):a.B('No valid memory address for tape "'+b+'"'):(a.v=0,a.s=e,a.status('Loaded tape "'+b+'"'),nf(a,0))}function tf(a,b){if(a.i||!1===b)a.A="",a.i="",b||(a.f&&a.status(1==a.f?"tape detached":"tape unloaded"),a.o=jf,a.f=kf,sf(a))}h.save=function(){return(new Q(this)).data()};
|
||||
h.restore=function(){return!0};h.td=function(){return this.b&65534};h.se=function(a){a&1&&(this.b&32768?(a&=-2,this.b&64&&L(this.a,this.H)):(this.b&=-129,this.b|=2048,this.w=0,Ub(this.a,this.U,1E3/Math.round(this.S/10))));this.b=this.b&-66|a&65};h.sd=function(){this.b&=-129;this.b|=2048;return this.w};h.re=function(){};var wf={},of=(wf[65384]=[null,null,bc.prototype.td,bc.prototype.se,"PRS"],wf[65386]=[null,null,bc.prototype.sd,bc.prototype.re,"PRB"],wf);
|
||||
function xf(a,b,c){y.call(this,"Disk",{id:a.Ba+".disk"+ka(++yf,4)},xf,8192);this.controller=a;this.l=a.l;this.D=a.D;this.f=b;this.ra=b.name;this.Eb=b.Eb;zf(this,c,b.K,b.P,b.N,b.W);F(this)}var yf=0;A(xf);h=xf.prototype;h.ia=function(a,b,c,d){this.D=d};
|
||||
function zf(a,b,c,d,e,f){a.mode=b;a.K=c;a.P=d;a.N=e;a.W=f;a.a=[];if("preload"!=a.mode){b=Array(a.K);for(c=0;c<b.length;c++){d=Array(a.P);for(e=0;e<d.length;e++){f=Array(a.N);for(var g=1;g<=f.length;g++)f[g-1]=Af(null,c,e,g,a.W,0);d[e]=f}b[c]=d}a.a=b}a.b=null}
|
||||
function Bf(a,b,c,d,e){var f=c;if(a.h)return!0;a.ra=b;a.ea=c;a.Wb=r(c);a.h=e;a.i=a.controller;if(d){var g=new FileReader;g.onload=function(){var b=g.result,c,d=b?b.byteLength:0,e=ia[d];if(e){a.K=e[0];a.P=e[1];a.N=e[2];a.W=e[3]||512;c=a.W>>2;var f=e=0,b=new DataView(b,0,d);a.a=Array(a.K);for(d=0;d<a.a.length;d++)for(var w=a.a[d]=Array(a.P),v=0;v<w.length;v++)for(var X=w[v]=Array(a.N),ya=0;ya<X.length;ya++){for(var Tb=Af(null,d,v,ya+1,a.W,0),ng=Tb.data,lc=0;lc<c;lc++,f+=4)var og=ng[lc]=b.getInt32(f,
|
||||
!0),e=e+og&-1;Tb.ha=c;X[ya]=Tb}a.b=e;c=a}else a.B("Unrecognized disk format ("+d+" bytes)");a.h&&(a.h.call(a.controller,a.f,c,a.ra,a.ea),a.h=null)};g.readAsArrayBuffer(d);return!0}0>c.indexOf("/api/v1/dump")&&(b=la(c),"json"==b||"gz"==b?f=encodeURI(c):(d="path",e="&mbhd=10",!c.indexOf("http:")||!c.indexOf("ftp:")||0<="dsk ima img 360 720 12 144".split(" ").indexOf(b)?(d="disk",e="&mbhd=0"):ma(c,"/")&&(d="dir"),f=ua()+"/api/v1/dump?"+d+"="+encodeURIComponent(c)+(a.Eb?"":e)+"&format=json"));return!!u(f,
|
||||
null,!0,function(b,c,d){Cf(a,b,c,d)})}
|
||||
function Cf(a,b,c,d){var e=null;a.c=!1;var f=0>d&&a.l&&!a.l.m.R;if(d)a.controller.B('Unable to load disk "'+a.ra+'" (error '+d+": "+b+")",f);else{Ta(a.controller.Ba,b,c);try{if(0<r(a.Wb,!0).toLowerCase().indexOf("-readonly"))a.c=!0;else{var g=c.indexOf("\n");0<g&&1024>g&&0<c.substring(0,g).indexOf("write-protected")&&(a.c=!0)}var k;"<"==c.substr(0,1)?k=["Missing disk image: "+a.ra]:k=0>c.indexOf("0x")&&'["'!=c.substr(0,2)?JSON.parse(c.replace(/([a-z]+):/gm,'"$1":').replace(/\/\/[^\n]*/gm,"")):eval("("+
|
||||
c+")");if(k.length)if(1==k.length)x(k[0]);else{a.K=k.length;a.P=k[0].length;a.N=k[0][0].length;var l=k[0][0][0];a.W=l&&l.length||512;for(d=c=0;d<a.K;d++)for(f=0;f<a.P;f++)for(g=0;g<a.N;g++)if(l=k[d][f][g]){var m=l.length;void 0===m&&(m=l.length=512);var m=m>>2,p=l.pattern;void 0===p&&(p=l.pattern=0);var t=l.data;if(void 0===t){var w=l.bytes;if(void 0!==w&&w.length){for(var v=m<<2,X=w.length;X<v;X++)w[X]=p;Df(l,w)}else t=[],p=l.pattern=p|p<<8|p<<16|p<<24,l.data=t;delete l.bytes}Af(l,d,f);for(v=0;v<
|
||||
t.length;v++)c=c+t[v]&-1}a.a=k;a.b=c;e=a}else x("Empty disk image: "+a.ra)}catch(ya){x("Disk image error ("+b+"): "+ya.message)}}a.h&&(a.h.call(a.i,a.f,e,a.ra,a.ea),a.h=null)}function Af(a,b,c,d,e,f){a||(a={sector:d,length:e,data:[],pattern:f});a.dg=b;a.eg=c;a.ta=a.ha=0;a.wa=!1;return a}
|
||||
h.seek=function(a,b,c,d,e){d=null;var f=this.f,g=this.a[a];if(g){var k=g[b];if(!k&&f.Jc&&b<f.P)for(k=g[b]=Array(f.gc),g=0;g<k.length;g++)k[g]=Af(null,a,b,g+1,f.Sb,0);if(k){for(g=0;g<k.length;g++)if(k[g]&&k[g].sector==c){d=k[g];break}!d&&f.Jc&&9==f.Mb&&(d=k[g]=Af(null,a,b,f.Mb,f.Sb,0))}}e&&e(d,!1);return d};function Df(a,b){for(var c=0,d=a.length>>2,e=Array(d),f=0;f<d;f++)e[f]=b[c]|b[c+1]<<8|b[c+2]<<16|b[c+3]<<24,c+=4;a.data=e}
|
||||
h.read=function(a,b){var c=-1;if(a&&b<a.length)var c=a.data,d=b>>2,c=(d<c.length?c[d]:a.pattern)>>((b&3)<<3)&255;return c};h.write=function(a,b,c){if(this.c)return!1;if(b<a.length){if(c!=this.read(a,b,!0)){var d=a.data,e=a.pattern,f=b>>2;b=(b&3)<<3;for(var g=d.length;g<=f;g++)d[g]=e;a.ha?f<a.ta?(a.ha+=a.ta-f,a.ta=f):f>=a.ta+a.ha&&(a.ha+=f-(a.ta+a.ha)+1):(a.ta=f,a.ha=1);d[f]=d[f]&~(255<<b)|c<<b}return!0}return null};
|
||||
function Jf(a,b){var c=a.P*a.N,d=b/c|0;return d<a.K?(b%=c,a.seek(d,b/a.N|0,b%a.N+1)):null}function Kf(a,b,c){for(var d=1,e=0,f=0;d--;){var g=a.read(b,c++);if(0>g)break;e|=g<<f;f+=8}return e}function Lf(a){for(var b="",c=0,d;d=Jf(a,c++);)for(var e=0,f=d.length;e<f;e++)b+=String.fromCharCode(Kf(a,d,e));return btoa(b)}
|
||||
function Ef(a,b){var c=a.P*a.N,d=b/c|0;return d<a.K?(b%=c,a.seek(d,b/a.N|0,b%a.N+1)):null}function Ff(a,b,c){for(var d=1,e=0,f=0;d--;){var g=a.read(b,c++);if(0>g)break;e|=g<<f;f+=8}return e}function Gf(a){for(var b="",c=0,d;d=Ef(a,c++);)for(var e=0,f=d.length;e<f;e++)b+=String.fromCharCode(Ff(a,d,e));return btoa(b)}
|
||||
h.save=function(){var a=0,b=[];b[a++]=[this.ea,this.b,this.K,this.P,this.N,this.W];if(!this.c)for(var c=this.a,d=0;d<c.length;d++)for(var e=0;e<c[d].length;e++)for(var f=0;f<c[d][e].length;f++){var g=c[d][e][f];if(g&&g.ha){for(var k=[],l=0,m=g.ta,p=g.ta+g.ha;m<p;)k[l++]=g.data[m++];b[a++]=[d,e,f,g.ta,k]}}return b};
|
||||
h.restore=function(a){var b=0,c="unsupported restore format";if(a&&0<a.length){var d=0,e=a[d++];e&&2<=e.length&&(!this.a.length&&6<=e.length?Ef(this,"local",e[2],e[3],e[4],e[5]):null!=e[1]&&null!=this.b&&e[1]!=this.b&&(c="original checksum ("+e[1]+") differs from current checksum ("+this.b+")",b=-2));for(this.a.length||(b=-1);d<a.length&&0<=b;){var f=0,g=a[d++],k=g[f++],l=g[f++],m=g[f++];if(k>=this.a.length||l>=this.a[k].length||m>=this.a[k][l].length){c="sector (CHS="+k+":"+l+":"+m+") out of range ("+
|
||||
h.restore=function(a){var b=0,c="unsupported restore format";if(a&&0<a.length){var d=0,e=a[d++];e&&2<=e.length&&(!this.a.length&&6<=e.length?zf(this,"local",e[2],e[3],e[4],e[5]):null!=e[1]&&null!=this.b&&e[1]!=this.b&&(c="original checksum ("+e[1]+") differs from current checksum ("+this.b+")",b=-2));for(this.a.length||(b=-1);d<a.length&&0<=b;){var f=0,g=a[d++],k=g[f++],l=g[f++],m=g[f++];if(k>=this.a.length||l>=this.a[k].length||m>=this.a[k][l].length){c="sector (CHS="+k+":"+l+":"+m+") out of range ("+
|
||||
b+" changes applied)";b=-1;break}if(this.c){c="unable to modify write-protected disk";b=-1;break}e=g[f++];f=g[f++];g=e+f.length;if(k=this.a[k][l][m]){for(l=k.data.length;l<e;)k.data[l++]=k.pattern;l=0;k.ta=e;for(k.ha=f.length;e<g;)k.data[e++]=f[l++];b++}}}0>b&&-2!=b&&this.controller.B("Unable to restore disk '"+this.ra+": "+c);return b};
|
||||
h.toJSON=function(){var a;a=0;for(var b;b=Jf(this,a++);)Mf(b);a=JSON.stringify(this.a,function(a,b){if("file"!=a)return b});a=a.replace(/,"length":512/gm,"").replace(/,"pattern":0/gm,"");a=a.replace(/"(sector|length|data|pattern)":/gm,"$1:");a=a.replace(/,"[^"]*":([0-9]+|true|false)/gm,"");a=a.replace(/(sector|length|data|pattern):/gm,'"$1":');return a=a.replace(/([\]}]),/gm,"$1,\n")};
|
||||
function Mf(a){var b=a.data,c=b.length;if(c<<2==a.length){for(var d=c-1,e=b[d],f=0;d--&&b[d]===e;)f++;f++&&(b.length=c-f,a.pattern=e)}}function O(a){y.call(this,"RK11",a,O,65536);this.w=Nf(this,a.autoMount);this.o=0;this.c=Array(8);this.A=!Ba("Mobi")&&window&&"FileReader"in window}A(O);function Nf(a,b){if(b&&"string"==typeof b)try{b=eval("("+b+")")}catch(c){x(a.type+" auto-mount error: "+c.message+" ("+b+")"),b=null}return b||{}}h=O.prototype;
|
||||
h.ba=function(a,b,c){var d=this;switch(b){case "listDisks":return this.j[b]=c,c.onchange=function(){var a=d.j.descDisk,b=c.options&&c.options[c.selectedIndex];if(a&&b){var g={};if(b=b.getAttribute("data-value"))try{g=eval("("+b+")")}catch(k){x("RK11 option error: "+k.message)}b=g.desc;void 0===b&&(b="");g=g.href;void 0!==g&&(b='<a href="'+g+'" target="_blank">'+b+"</a>");a.innerHTML=b}},!0;case "descDisk":case "listDrives":return this.j[b]=c,c.onchange=function(){var a=q(c.value);null!=a&&Of(d,a)},
|
||||
!0;case "loadDisk":return this.j[b]=c,c.onclick=function(){var a=d.j.listDisks;a&&a.options&&Pf(d,a.options[a.selectedIndex].text,a.value)},!0;case "bootDisk":return this.j[b]=c,c.onclick=function(){var a,b=d.j.listDrives,b=b&&q(b.value);null==b||0>b||b>=d.c.length||!(a=d.c[b])?d.B("Unable to boot the selected drive"):a.T?(Jc(d.a,0,!0),(a=d.Yb(a,0,0,0,512,0,2))&&d.B("Unable to read the boot sector ("+a+")")):d.B("Load a disk into the drive first")},!0;case "saveDisk":if(!this.A){c.parentNode.removeChild(c);
|
||||
break}this.j[b]=c;c.onclick=function(){var a=d.j.listDrives;a&&a.options&&d.c&&((a=d.c[q(a.value)||0])?(a=a.T)?(a=Ca(Lf(a),a.Qb.replace(".json",".img")),x(a)):d.B("No disk loaded in drive."):d.B("No disk drive selected."))};return!0;case "mountDisk":if(this.A)return this.j[b]=c,c.addEventListener("change",function(){var a=c.children[0];a.children[1].disabled=!a.children[0].files.length}),c.onsubmit=function(a){if(a=a.currentTarget[1].files[0]){var b=a.name;Pf(d,r(b,!0),b,a)}return!1},!0;c.parentNode.removeChild(c)}return!1};
|
||||
h.ia=function(a,b,c,d){this.l=a;this.h=b;this.a=c;this.D=d;if(a=Nf(this,xc(this.l,"autoMount")))for(var e in a)e.substr(0,2)==this.type.substr(0,2)&&(this.w[e]=a[e]);Qf(this);this.Wa=Yb(this.a,144,5,65536);fb(b,this,Rf);hb(b,this.reset.bind(this));Sf(this,"None","",!0);this.A&&Sf(this,"Local Disk","?");Sf(this,"Remote Disk","??");Tf(this)||F(this)};
|
||||
h.ka=function(a,b){if(!b){if(!a||!this.restore){if(this.reset(),this.l.Lb){for(a=0;a<this.c.length;a++)Uf(this,a,!0);Tf(this,!0)}}else if(!this.restore(a))return!1;if(a=this.j.listDrives){for(;a.firstChild;)a.removeChild(a.firstChild);a.value="";for(b=0;8>b;b++){var c=document.createElement("option");c.value=b;c.text="RK"+b;a.appendChild(c)}a.value="0";Of(this,0)}}return!0};h.ja=function(a){return a?this.save():!0};h.reset=function(){Qf(this)};h.save=function(){return(new Q(this)).data()};
|
||||
h.restore=function(a){return Qf(this,a[0])};function Tf(a,b){b||(a.o=0);for(var c in a.w){var d=a.w[c],e=d.path||"",f;if(!(f=d.name))a:{if((f=a.j.listDisks)&&f.options)for(var g=0;g<f.options.length;g++){var k=f.options[g];if(k.value==e){f=k.text;break a}}f=r(e,!0)}if(e&&f&&(g=-1,c&&(g=c.charCodeAt(c.length-1)-48,0>g||9<g)&&(g=-1),0<=g&&g<a.c.length)){!Vf(a,g,f,e,!0)&&b&&F(a,!1);continue}a.B("Incorrect auto-mount settings for drive "+c+" ("+JSON.stringify(d)+")")}return!!a.o}
|
||||
function Pf(a,b,c,d){var e=a.j.listDrives,e=e&&q(e.value);if(void 0===e||0>e||e>=a.c.length)a.B("Unable to load the selected drive");else if(c)if("?"==c)a.B('Use "Choose File" and "Mount" to select and load a local disk.');else{if("??"==c){c=window.prompt("Enter the URL of a remote disk image.","")||"";if(!c)return;b=r(c);a.status("Attempting to load "+c+' as "'+b+'"')}Vf(a,e,b,c,!1,d)}else Uf(a,e)}
|
||||
function Vf(a,b,c,d,e,f){var g=-1,k=a.c[b];k.ea.toLowerCase()!=d.toLowerCase()&&(g++,Uf(a,b,!0),k.Ma?a.B("RK11 busy"):(k.Ma=!0,e&&(k.La=!0,a.o++),k.xa=!!f,Gf(new Cf(a,k,"preload"),c,d,f,a.vc)&&g++));return g}h.vc=function(a,b,c,d,e){a.Ma=!1;b&&(b.K>a.K||b.P>a.P)&&(this.B('Disk "'+c+'" too large for drive '+("RK"+a.Na)),b=null);b?(a.T=b,a.ra=c,a.ea=d,this.B('Loaded disk "'+c+'" in drive '+("RK"+a.Na),a.La||e),this.l&&Dc(this.l)):a.xa=!1;a.La&&(a.La=!1,--this.o||F(this));Of(this,a.Na)};
|
||||
function Sf(a,b,c,d){if((a=a.j.listDisks)&&a.options){for(var e=0;e<a.options.length;e++)if(a.options[e].value==c)return;e=document.createElement("option");e.text=b;e.value=c;d&&a.childNodes[0]?a.insertBefore(e,a.childNodes[0]):a.appendChild(e)}}
|
||||
function Of(a,b){if(0<=b&&b<a.c.length){var c=a.c[b],d=a.j.listDisks;a=a.j.listDrives;if(d&&a&&d.options&&a.options&&(a=q(a.value),c=c.xa?"?":c.ea,!isNaN(a)&&a==b)){for(b=0;b<d.options.length;b++)if(d.options[b].value==c){d.selectedIndex!=b&&(d.selectedIndex=b);break}b==d.options.length&&(d.selectedIndex=0)}}}function Uf(a,b,c){var d=a.c[b];if(d.T||!1===c)d.ra="",d.ea="",d.T=null,d.xa=!1,c||(a.B("Drive RK"+b+" unloaded",c),Of(a,b))}
|
||||
function Qf(a,b){var c=0;b||(b=[]);a.G=b[c++]||2496;a.i=b[c++]||0;a.b=b[c++]||128;a.v=b[c++]||0;a.s=b[c++]||0;a.f=b[c++]||0;a.C=b[c]||0;for(b=0;b<a.c.length;b++){var d=a.c[b];void 0===d&&(d=a.c[b]={});c=a;d.Na=b;d.name=c.Aa;d.Ma=d.xa=!1;d.K=203;d.P=2;d.N=12;d.W=512;d.zb=!0;d.Ec=0;d.Cc=0;d.Gb=1;d.$b=d.N;d.Mb=d.W;d.Kc=0;d.Zd=null;d.T||(d.ea="");d.status=2368}return!0}
|
||||
h.uc=function(a,b,c,d,e,f){this.s=f&65535;this.b=this.b&-49|f>>12&48;this.v=65536-e&65535;this.f=this.f&-16|d&15;a&&(this.i=this.i|a|32768,this.b|=49152);return!0};
|
||||
h.Yb=function(a,b,c,d,e,f,g,k,l){var m=0;a=a.T;var p=null,t;a||(m=128,e=0);for(;e--;){if(!p){p=a.seek(b,c,d+1);if(!p){m=4096;break}t=0}var w,v;if(0>(w=a.read(p,t++))||0>(v=a.read(p,t++))){m=32;break}if(!k&&(vb(this.h,f,w|v<<8),Vb(this.h))){m=1024;break}f+=g;if(t>=a.W&&(p=null,++d>=a.N&&(d=0,++c>=a.P&&(c=0,++b>=a.K)))){m=64;break}}return l?l(m,b,c,d,e,f):m};
|
||||
h.wc=function(a,b,c,d,e,f,g,k,l){var m=0;a=a.T;var p=null,t;a||(m=128,e=0);for(;e--;){var w=wb(this.h,f);if(Vb(this.h)){m=1024;break}f+=g;if(!p){p=a.seek(b,c,d+1,!0);if(!p){m=4096;break}t=0}if(k){var v,X;if(0>(v=a.read(p,t++))||0>(X=a.read(p,t++))){m=32;break}if(w!=(v|X<<8)){m=1;break}}else if(!a.write(p,t++,w&255)||!a.write(p,t++,w>>8)){m=32;break}if(t>=a.W&&(p=null,++d>=a.N&&(d=0,++c>=a.P&&(c=0,++b>=a.K)))){m=64;break}}return l?l(m,b,c,d,e,f):m};h.zd=function(){return this.G};h.ye=function(){};
|
||||
h.Ad=function(){return this.i};h.ze=function(){};h.wd=function(){return this.b&61438};
|
||||
h.ve=function(a){this.b=this.b&-3968|a&3967;if(this.b&1){a=!0;var b,c=(this.f&57344)>>13,d=this.c[c],e,f,g,k,l,m;this.b&=-129;var p=(this.b&14)>>1;switch(p){case 0:this.i=0;this.b=128;this.f=0;break;case 4:e=(this.f&8160)>>5;e>=d.K&&(this.i|=32832,this.b|=49152);break;case 5:case 2:b=this.Yb;case 3:case 1:b||(b=this.wc),e=(this.f&8160)>>5,f=(this.f&16)>>4,g=this.f&15,k=65536-this.v&65535,l=(this.b&48)<<12|this.s,m=this.b&2048?0:2,e>=d.K?(this.i|=32832,this.b|=49152):g>=d.N?(this.i|=32800,this.b|=
|
||||
49152):a=b.call(this,d,e,f,g,k,l,m,3<=p,this.uc.bind(this))}this.G=d.status|(d.T?128:0)|c<<13|this.f&15;a&&(this.b&=-2,this.b|=128,this.b&64&&L(this.a,this.Wa))}};h.Bd=function(){return this.v};h.Ae=function(a){this.v=a};h.vd=function(){return this.s};h.ue=function(a){this.s=a};h.xd=function(){return this.f};h.we=function(a){this.f=a};h.yd=function(){return this.C};h.xe=function(a){this.C=a};
|
||||
var Wf={},Rf=(Wf[65280]=[null,null,O.prototype.zd,O.prototype.ye,"RKDS"],Wf[65282]=[null,null,O.prototype.Ad,O.prototype.ze,"RKER"],Wf[65284]=[null,null,O.prototype.wd,O.prototype.ve,"RKCS"],Wf[65286]=[null,null,O.prototype.Bd,O.prototype.Ae,"RKWC"],Wf[65288]=[null,null,O.prototype.vd,O.prototype.ue,"RKBA"],Wf[65290]=[null,null,O.prototype.xd,O.prototype.we,"RKDA"],Wf[65294]=[null,null,O.prototype.yd,O.prototype.xe,"RKDB"],Wf);
|
||||
function N(a){y.call(this,"RL11",a,N,131072);this.A=Xf(this,a.autoMount);this.v=0;this.c=Array(4);this.C=!Ba("Mobi")&&window&&"FileReader"in window}A(N);function Xf(a,b){if(b&&"string"==typeof b)try{b=eval("("+b+")")}catch(c){x(a.type+" auto-mount error: "+c.message+" ("+b+")"),b=null}return b||{}}h=N.prototype;
|
||||
h.ba=function(a,b,c){var d=this;switch(b){case "listDisks":return this.j[b]=c,c.onchange=function(){var a=d.j.descDisk,b=c.options&&c.options[c.selectedIndex];if(a&&b){var g={};if(b=b.getAttribute("data-value"))try{g=eval("("+b+")")}catch(k){x("RL11 option error: "+k.message)}b=g.desc;void 0===b&&(b="");g=g.href;void 0!==g&&(b='<a href="'+g+'" target="_blank">'+b+"</a>");a.innerHTML=b}},!0;case "descDisk":case "listDrives":return this.j[b]=c,c.onchange=function(){var a=q(c.value);null!=a&&Yf(d,a)},
|
||||
!0;case "loadDisk":return this.j[b]=c,c.onclick=function(){var a=d.j.listDisks;a&&a.options&&Zf(d,a.options[a.selectedIndex].text,a.value)},!0;case "bootDisk":return this.j[b]=c,c.onclick=function(){var a,b=d.j.listDrives,b=b&&q(b.value);null==b||0>b||b>=d.c.length||!(a=d.c[b])?d.B("Unable to boot the selected drive"):a.T?(Jc(d.a,0,!0),(a=d.Zb(a,0,0,0,512,0))&&d.B("Unable to read the boot sector ("+a+")")):d.B("Load a disk into the drive first")},!0;case "saveDisk":if(!this.C){c.parentNode.removeChild(c);
|
||||
break}this.j[b]=c;c.onclick=function(){var a=d.j.listDrives;a&&a.options&&d.c&&((a=d.c[q(a.value)||0])?(a=a.T)?(a=Ca(Lf(a),a.Qb.replace(".json",".img")),x(a)):d.B("No disk loaded in drive."):d.B("No disk drive selected."))};return!0;case "mountDisk":if(this.C)return this.j[b]=c,c.addEventListener("change",function(){var a=c.children[0];a.children[1].disabled=!a.children[0].files.length}),c.onsubmit=function(a){if(a=a.currentTarget[1].files[0]){var b=a.name;Zf(d,r(b,!0),b,a)}return!1},!0;c.parentNode.removeChild(c)}return!1};
|
||||
h.ia=function(a,b,c,d){this.l=a;this.h=b;this.a=c;this.D=d;if(a=Xf(this,xc(this.l,"autoMount")))for(var e in a)e.substr(0,2)==this.type.substr(0,2)&&(this.A[e]=a[e]);$f(this);this.Wa=Yb(this.a,112,5,131072);fb(b,this,ag);hb(b,this.reset.bind(this));bg(this,"None","",!0);this.C&&bg(this,"Local Disk","?");bg(this,"Remote Disk","??");cg(this)||F(this)};
|
||||
h.ka=function(a,b){if(!b){if(!a||!this.restore){if(this.reset(),this.l.Lb){for(a=0;a<this.c.length;a++)dg(this,a,!0);cg(this,!0)}}else if(!this.restore(a))return!1;if(a=this.j.listDrives){for(;a.firstChild;)a.removeChild(a.firstChild);a.value="";for(b=0;4>b;b++){var c=document.createElement("option");c.value=b;c.text="RL"+b;a.appendChild(c)}a.value="0";Yf(this,0)}}return!0};h.ja=function(a){return a?this.save():!0};h.reset=function(){$f(this)};h.save=function(){return(new Q(this)).data()};
|
||||
h.restore=function(a){return $f(this,a[0])};function cg(a,b){b||(a.v=0);for(var c in a.A){var d=a.A[c],e=d.path||"",f;if(!(f=d.name))a:{if((f=a.j.listDisks)&&f.options)for(var g=0;g<f.options.length;g++){var k=f.options[g];if(k.value==e){f=k.text;break a}}f=r(e,!0)}if(e&&f&&(g=-1,c&&(g=c.charCodeAt(c.length-1)-48,0>g||9<g)&&(g=-1),0<=g&&g<a.c.length)){!eg(a,g,f,e,!0)&&b&&F(a,!1);continue}a.B("Incorrect auto-mount settings for drive "+c+" ("+JSON.stringify(d)+")")}return!!a.v}
|
||||
function Zf(a,b,c,d){var e=a.j.listDrives,e=e&&q(e.value);if(void 0===e||0>e||e>=a.c.length)a.B("Unable to load the selected drive");else if(c)if("?"==c)a.B('Use "Choose File" and "Mount" to select and load a local disk.');else{if("??"==c){c=window.prompt("Enter the URL of a remote disk image.","")||"";if(!c)return;b=r(c);a.status("Attempting to load "+c+' as "'+b+'"')}eg(a,e,b,c,!1,d)}else dg(a,e)}
|
||||
function eg(a,b,c,d,e,f){var g=-1,k=a.c[b];k.ea.toLowerCase()!=d.toLowerCase()&&(g++,dg(a,b,!0),k.Ma?a.B("RL11 busy"):(k.Ma=!0,e&&(k.La=!0,a.v++),k.xa=!!f,Gf(new Cf(a,k,"preload"),c,d,f,a.yc)&&g++));return g}h.yc=function(a,b,c,d,e){a.Ma=!1;b&&(b.K>a.K||b.P>a.P)&&(this.B('Disk "'+c+'" too large for drive '+("RL"+a.Na)),b=null);b?(a.T=b,a.ra=c,a.ea=d,this.B('Loaded disk "'+c+'" in drive '+("RL"+a.Na),a.La||e),this.l&&Dc(this.l)):a.xa=!1;a.La&&(a.La=!1,--this.v||F(this));Yf(this,a.Na)};
|
||||
function bg(a,b,c,d){if((a=a.j.listDisks)&&a.options){for(var e=0;e<a.options.length;e++)if(a.options[e].value==c)return;e=document.createElement("option");e.text=b;e.value=c;d&&a.childNodes[0]?a.insertBefore(e,a.childNodes[0]):a.appendChild(e)}}
|
||||
function Yf(a,b){if(0<=b&&b<a.c.length){var c=a.c[b],d=a.j.listDisks;a=a.j.listDrives;if(d&&a&&d.options&&a.options&&(a=q(a.value),c=c.xa?"?":c.ea,!isNaN(a)&&a==b)){for(b=0;b<d.options.length;b++)if(d.options[b].value==c){d.selectedIndex!=b&&(d.selectedIndex=b);break}b==d.options.length&&(d.selectedIndex=0)}}}function dg(a,b,c){var d=a.c[b];if(d.T||!1===c)d.ra="",d.ea="",d.T=null,d.xa=!1,c||(a.B("Drive RL"+b+" unloaded",c),Yf(a,b))}
|
||||
function $f(a,b){var c=0;b||(b=[]);a.b=b[c++]||129;a.w=b[c++]||0;a.f=b[c++]||0;a.i=b[c++]||0;a.s=b[c++]||0;a.o=b[c]||0;for(b=0;b<a.c.length;b++){var d=a.c[b];void 0===d&&(d=a.c[b]={});c=a;d.Na=b;d.name=c.Aa;d.Ma=d.xa=!1;d.K=512;d.P=2;d.N=40;d.W=256;d.zb=!0;d.Ec=0;d.Cc=0;d.Gb=1;d.$b=d.N;d.Mb=d.W;d.Kc=0;d.Zd=null;d.T||(d.ea="");d.status=29}return!0}
|
||||
h.xc=function(a,b,c,d,e,f){this.w=f&65535;this.b=this.b&-49|f>>12&48;this.o=f>>16&63;this.i=this.f=b<<7|(c?64:0)|d&63;this.s=65536-e&65535;a&&(this.b=this.b|a|32768);return!0};
|
||||
h.Zb=function(a,b,c,d,e,f,g){var k=0;a=a.T;var l=null,m;a||(k=5120,e=0);for(;e--;){if(!l){l=a.seek(b,c,d+1);if(!l){k=5120;break}m=0}var p,t;if(0>(p=a.read(l,m++))||0>(t=a.read(l,m++))){k=5120;break}vb(this.h,Sc(this.a,f),p|t<<8);if(Vb(this.h)){k=8192;break}f+=2;if(m>=a.W&&(l=null,++d>=a.N&&(d=0,++c>=a.P&&(c=0,++b>=a.K)))){k=5120;break}}return g?g(k,b,c,d,e,f):k};
|
||||
h.zc=function(a,b,c,d,e,f,g){var k=0;a=a.T;var l=null,m;a||(k=5120,e=0);for(;e--;){var p=wb(this.h,Sc(this.a,f));if(Vb(this.h)){k=8192;break}f+=2;if(!l){l=a.seek(b,c,d+1,!0);if(!l){k=5120;break}m=0}if(!a.write(l,m++,p&255)||!a.write(l,m++,p>>8)){k=5120;break}if(m>=a.W&&(l=null,++d>=a.N&&(d=0,++c>=a.P&&(c=0,++b>=a.K)))){k=5120;break}}return g?g(k,b,c,d,e,f):k};h.Ed=function(){return this.b&65535};
|
||||
h.De=function(a){this.b=this.b&-1023|a&1022;this.o=this.o&60|(a&48)>>4;if(!(this.b&128)){a=!0;var b,c=this.c[(this.b&768)>>8],d=c.T,e,f,g;this.b&=-2;switch(this.b&14){case 4:this.s&8&&(this.b&=63);this.s=c.status|this.i&64|(d&&512==d.K?128:0);break;case 6:1==(this.f&3)&&(b=this.f&65408,c=(this.f&16)<<2,this.i=this.f&4?this.i+b:this.i-b,this.f=this.i=this.i&65408|c);break;case 8:this.s=this.i;break;case 12:b=this.Zb;case 10:b||(b=this.zc),e=this.f>>7,f=this.f&64?1:0,g=this.f&63,!d||e>=d.K||g>=d.N?
|
||||
this.b|=37888:(a=65536-this.s&65535,d=(this.o&63)<<16|this.w,a=b.call(this,c,e,f,g,a,d,this.xc.bind(this)))}a&&(this.b|=129,this.b&64&&L(this.a,this.Wa))}};h.Cd=function(){return this.w};h.Be=function(a){this.w=a&65534};h.Fd=function(){return this.f};h.Ee=function(a){this.f=a};h.Gd=function(){return this.s};h.Fe=function(a){this.s=a};h.Dd=function(){return this.o};h.Ce=function(a){this.o=a&63;this.b=this.b&-49|(this.o&3)<<4};
|
||||
var fg={},ag=(fg[63744]=[null,null,N.prototype.Ed,N.prototype.De,"RLCS"],fg[63746]=[null,null,N.prototype.Cd,N.prototype.Be,"RLBA"],fg[63748]=[null,null,N.prototype.Fd,N.prototype.Ee,"RLDA"],fg[63750]=[null,null,N.prototype.Gd,N.prototype.Fe,"RLMP"],fg[63752]=[null,null,N.prototype.Dd,N.prototype.Ce,"RLBE"],fg);
|
||||
function gg(a,b,c){y.call(this,"Computer",a,gg,33554432);this.m.R=!1;hg(this,b);this.A=xc(this,"autoPower",a);this.l=0;this.L=a.busWidth||a.buswidth;this.b=ig;this.s=null;this.i=this.I=!1;this.S=xc(this,"url")||"";(Math.random()+.1).toString(36);this.c=jg(this);if(this.a=Va("CPU",this.id)){this.D=Va("Debugger",this.id);this.h=new Ab({id:this.Ba+".bus",busWidth:this.L},this.a,this.D);var d,e=B(this.id);if((this.v=Va("Panel",this.id))&&this.v.lb)for(b=0;b<e.length;b++)d=e[b],d.B=this.v.B,d.V=this.v.V,
|
||||
d.lb=this.v.lb;this.V("PDPjs v1.30.6\nCopyright \u00a9 2012-2016 Jeff Parsons <Jeff@pcjs.org>\nLicense: GPL version 3 or later <http://gnu.org/licenses/gpl.html>");this.V("Portions adapted from the PDP-11/70 Emulator v1.4 by Paul Nankervis <paulnank@hotmail.com>");for(b=0;b<e.length;b++)d=e[b],d.ia&&d.ia(this,this.h,this.a,this.D);b=null;d=a.resume;void 0!==d&&(1<d.length?b=this.o=d:this.b=parseInt(d,10));var f;if(a=xc(this,"state")||(f=!0,a.state))b=this.C=a,f||(this.i=!0,this.b=ig),this.b&&(this.w=
|
||||
new Q(this,"1.30.6"),kg(this.w)?b=null:delete this.w);!b&&this.b&&(b=lg(this))&&(this.i=!0);if(b){var g=this;u(b,null,!0,function(a,b,c){c?(g.o=null,g.i=!1,g.B("Unable to load machine state from server (error "+c+(b?": "+pa(b):"")+")")):(g.s=b,g.I=!0);F(g)})}else F(this);this.j.power||(this.A=!0);!c&&this.A&&mg(this,this.mb)}else x("Unable to find CPU component")}A(gg);var ig=0;
|
||||
function hg(a,b){if(!b){var c;if("object"==typeof resources&&(c=resources.parms))try{b=eval("("+c+")")}catch(d){x(d.message+" ("+c+")")}}a.J=b}function xc(a,b,c){var d=b.toLowerCase(),d=Na[b]||Na[d];void 0===d&&a.J&&(d=a.J[b]);void 0===d&&c&&(d=c[b]);void 0===d&&"object"==typeof resources&&resources[b]&&(d=b);return d}function mg(a,b,c){for(var d=B(a.id),e=0;e<=d.length;e++){var f=e<d.length?d[e]:a;if(!Xa(f)){Xa(f,function(){mg(a,b,c)});return}}b.call(a,c)}
|
||||
function ng(a,b){var c=new Q(a,"1.30.6","validate");if(kg(c)&&og(c)){var d=c.get("timestamp"),e=b?b.get("timestamp"):"unknown";d!=e&&(a.B("Machine state may be out-of-date\n("+d+" vs. "+e+")\nCheck your browser's local storage limits"),b||c.clear())}}h=gg.prototype;
|
||||
h.mb=function(a){void 0===a&&(a=this.b||(this.s?1:ig));if(!this.l){this.l++;var b=!1,c=!1;this.G=!1;var d=this.w||new Q(this,"1.30.6");if(-1==a)b=!0;else if(a>ig){if(kg(d,this.s)){this.f=new Q(this,"1.30.6","failsafe");kg(this.f)&&(pg(this,d),a=2,qg(this.f));this.f.set("timestamp",sa());rg(this.f);var e=this.b&&!this.i;if(1==a||va("Click OK to restore the previous PDPjs machine state, or CANCEL to reset the machine.")){if(c=og(d)){var f=d.get("code"),g=d.get("data");f&&("ok"==f?kg(d,g):("error"==
|
||||
f&&"no machine state"!=g?(this.B("Error: "+g),"unable to verify user"==g&&(Aa("user",""),this.c=null)):this.V(f+": "+g),qg(d),kg(d)?(c=og(d),e=!0):c=!1))}e&&ng(this,c?d:null)}else 2==a&&d.clear()}else ng(this);delete this.s;delete this.w}e=B(this.id);for(f=0;f<e.length;f++)g=e[f],g!==this&&g!=this.a&&(c=ug(this,g,d,b,c));b=[d,a,c];-1!=a?mg(this,this.ac,b):this.ac(b)}};
|
||||
function ug(a,b,c,d,e){if(!b.m.R){b.m.R=!0;if(b.ka){var f=null;e&&((f=c.get(b.id))||(f=c.get(b.id.replace(/[a-z0-9]\./i,"."))));"string"===typeof f&&(f=null);!b.ka(f,d)&&f&&(x("Unable to restore state for "+b.type),a.C&&!a.I?(c.clear(),a.b=ig,window&&window.location.reload()):a.G=!0,b.ka(null),e=!1)}if(!d&&b.cc)for(a=b.cc.split("|"),c=0;c<a.length;c++)b.status(a[c])}return e}
|
||||
h.ac=function(a){var b=a[0],c=0>a[1];a=a[2];this.U=!0;this.m.R=!0;var d=this.j.power;d&&(d.textContent="Shutdown");this.a&&(ug(this,this.a,b,c,a),this.za(),this.a.Ea());this.G&&(pg(this,b),b.clear());!c&&this.f&&(this.f.clear(),delete this.f);this.l=0};
|
||||
function pg(a,b){if(va("There may be a problem with your PDPjs machine.\n\nTo help us diagnose it, click OK to send this PDPjs machine state to http://www.pcjs.org.")){var c=a.c||"";b=b.toString();var d={app:"PDPjs",ver:"1.30.6"};d.url=a.S;d.user=c;d.type="bug";d.data=b;u("http://www.pcjs.org/api/v1/report",d,!0)}}
|
||||
function vg(a,b,c){var d,e="none";if(a.l)return null;a.l--;var f=new Q(a,"1.30.6"),g=new Q(a,"1.30.6","validate"),k=sa();g.set("timestamp",k);f.set("timestamp",k);f.set("version","1.30.6");f.set("url",window?window.location.href:null);f.set("browser",window?window.navigator.userAgent:"");a.a&&a.a.ja&&(c&&G(a.a),d=a.a.ja(b,c),"object"===typeof d&&f.set(a.a.id,d),c&&(a.a.m.R=!1,!1===d&&(e=null)));for(var k=B(a.id),l=0;l<k.length;l++){var m=k[l];m.m.R&&(m.ja&&(d=m.ja(b,c),"object"===typeof d&&f.set(m.id,
|
||||
d)),c&&(m.m.R=!1,!1===d&&(e=null)))}e&&(c?(k=d=!1,b?(a.c&&wg(a,a.c,f.toString()),rg(g)&&rg(f)||(e=null,d=k=!0)):a.b&&(d=!0,k=3==a.b),d&&f.clear(k)):e=f.toString());c&&(a.m.R=!1,b=a.j.power)&&(b.textContent="Power");a.l=0;return e}h.reset=function(){this.h&&this.h.reset&&this.h.reset();this.a&&this.a.reset&&this.a.reset();for(var a=B(this.id),b=0;b<a.length;b++){var c=a[b];c!==this&&c!==this.h&&c!==this.a&&c.reset&&c.reset()}this.za(-1)};
|
||||
h.toJSON=function(){var a;a=0;for(var b;b=Ef(this,a++);)Hf(b);a=JSON.stringify(this.a,function(a,b){if("file"!=a)return b});a=a.replace(/,"length":512/gm,"").replace(/,"pattern":0/gm,"");a=a.replace(/"(sector|length|data|pattern)":/gm,"$1:");a=a.replace(/,"[^"]*":([0-9]+|true|false)/gm,"");a=a.replace(/(sector|length|data|pattern):/gm,'"$1":');return a=a.replace(/([\]}]),/gm,"$1,\n")};
|
||||
function Hf(a){var b=a.data,c=b.length;if(c<<2==a.length){for(var d=c-1,e=b[d],f=0;d--&&b[d]===e;)f++;f++&&(b.length=c-f,a.pattern=e)}}function O(a){y.call(this,"RK11",a,O,65536);this.w=If(this,a.autoMount);this.o=0;this.c=Array(8);this.A=!Ba("Mobi")&&window&&"FileReader"in window}A(O);function If(a,b){if(b&&"string"==typeof b)try{b=eval("("+b+")")}catch(c){x(a.type+" auto-mount error: "+c.message+" ("+b+")"),b=null}return b||{}}h=O.prototype;
|
||||
h.ba=function(a,b,c){var d=this;switch(b){case "listDisks":return this.j[b]=c,c.onchange=function(){var a=d.j.descDisk,b=c.options&&c.options[c.selectedIndex];if(a&&b){var g={};if(b=b.getAttribute("data-value"))try{g=eval("("+b+")")}catch(k){x("RK11 option error: "+k.message)}b=g.desc;void 0===b&&(b="");g=g.href;void 0!==g&&(b='<a href="'+g+'" target="_blank">'+b+"</a>");a.innerHTML=b}},!0;case "descDisk":case "listDrives":return this.j[b]=c,c.onchange=function(){var a=q(c.value);null!=a&&Jf(d,a)},
|
||||
!0;case "loadDisk":return this.j[b]=c,c.onclick=function(){var a=d.j.listDisks;a&&a.options&&Kf(d,a.options[a.selectedIndex].text,a.value)},!0;case "bootDisk":return this.j[b]=c,c.onclick=function(){var a,b=d.j.listDrives,b=b&&q(b.value);null==b||0>b||b>=d.c.length||!(a=d.c[b])?d.B("Unable to boot the selected drive"):a.T?(Fc(d.a,0,!0),(a=d.ec(a,0,0,0,512,0,2))&&d.B("Unable to read the boot sector ("+a+")")):d.B("Load a disk into the drive first")},!0;case "saveDisk":if(!this.A){c.parentNode.removeChild(c);
|
||||
break}this.j[b]=c;c.onclick=function(){var a=d.j.listDrives;a&&a.options&&d.c&&((a=d.c[q(a.value)||0])?(a=a.T)?(a=Ca(Gf(a),a.Wb.replace(".json",".img")),x(a)):d.B("No disk loaded in drive."):d.B("No disk drive selected."))};return!0;case "mountDisk":if(this.A)return this.j[b]=c,c.addEventListener("change",function(){var a=c.children[0];a.children[1].disabled=!a.children[0].files.length}),c.onsubmit=function(a){if(a=a.currentTarget[1].files[0]){var b=a.name;Kf(d,r(b,!0),b,a)}return!1},!0;c.parentNode.removeChild(c)}return!1};
|
||||
h.ia=function(a,b,c,d){this.l=a;this.h=b;this.a=c;this.D=d;if(a=If(this,tc(this.l,"autoMount")))for(var e in a)e.substr(0,2)==this.type.substr(0,2)&&(this.w[e]=a[e]);Lf(this);this.Xa=Vb(this.a,144,5,65536);fb(b,this,Mf);hb(b,this.reset.bind(this));Nf(this,"None","",!0);this.A&&Nf(this,"Local Disk","?");Nf(this,"Remote Disk","??");Of(this)||F(this)};
|
||||
h.ka=function(a,b){if(!b){if(!a||!this.restore){if(this.reset(),this.l.Rb){for(a=0;a<this.c.length;a++)Pf(this,a,!0);Of(this,!0)}}else if(!this.restore(a))return!1;if(a=this.j.listDrives){for(;a.firstChild;)a.removeChild(a.firstChild);a.value="";for(b=0;8>b;b++){var c=document.createElement("option");c.value=b;c.text="RK"+b;a.appendChild(c)}a.value="0";Jf(this,0)}}return!0};h.ja=function(a){return a?this.save():!0};h.reset=function(){Lf(this)};h.save=function(){return(new Q(this)).data()};
|
||||
h.restore=function(a){return Lf(this,a[0])};function Of(a,b){b||(a.o=0);for(var c in a.w){var d=a.w[c],e=d.path||"",f;if(!(f=d.name))a:{if((f=a.j.listDisks)&&f.options)for(var g=0;g<f.options.length;g++){var k=f.options[g];if(k.value==e){f=k.text;break a}}f=r(e,!0)}if(e&&f&&(g=-1,c&&(g=c.charCodeAt(c.length-1)-48,0>g||9<g)&&(g=-1),0<=g&&g<a.c.length)){!Qf(a,g,f,e,!0)&&b&&F(a,!1);continue}a.B("Incorrect auto-mount settings for drive "+c+" ("+JSON.stringify(d)+")")}return!!a.o}
|
||||
function Kf(a,b,c,d){var e=a.j.listDrives,e=e&&q(e.value);if(void 0===e||0>e||e>=a.c.length)a.B("Unable to load the selected drive");else if(c)if("?"==c)a.B('Use "Choose File" and "Mount" to select and load a local disk.');else{if("??"==c){c=window.prompt("Enter the URL of a remote disk image.","")||"";if(!c)return;b=r(c);a.status("Attempting to load "+c+' as "'+b+'"')}Qf(a,e,b,c,!1,d)}else Pf(a,e)}
|
||||
function Qf(a,b,c,d,e,f){var g=-1,k=a.c[b];k.ea.toLowerCase()!=d.toLowerCase()&&(g++,Pf(a,b,!0),k.Qa?a.B("RK11 busy"):(k.Qa=!0,e&&(k.Pa=!0,a.o++),k.xa=!!f,Bf(new xf(a,k,"preload"),c,d,f,a.Bc)&&g++));return g}h.Bc=function(a,b,c,d,e){a.Qa=!1;b&&(b.K>a.K||b.P>a.P)&&(this.B('Disk "'+c+'" too large for drive '+("RK"+a.Ra)),b=null);b?(a.T=b,a.ra=c,a.ea=d,this.B('Loaded disk "'+c+'" in drive '+("RK"+a.Ra),a.Pa||e),this.l&&zc(this.l)):a.xa=!1;a.Pa&&(a.Pa=!1,--this.o||F(this));Jf(this,a.Ra)};
|
||||
function Nf(a,b,c,d){if((a=a.j.listDisks)&&a.options){for(var e=0;e<a.options.length;e++)if(a.options[e].value==c)return;e=document.createElement("option");e.text=b;e.value=c;d&&a.childNodes[0]?a.insertBefore(e,a.childNodes[0]):a.appendChild(e)}}
|
||||
function Jf(a,b){if(0<=b&&b<a.c.length){var c=a.c[b],d=a.j.listDisks;a=a.j.listDrives;if(d&&a&&d.options&&a.options&&(a=q(a.value),c=c.xa?"?":c.ea,!isNaN(a)&&a==b)){for(b=0;b<d.options.length;b++)if(d.options[b].value==c){d.selectedIndex!=b&&(d.selectedIndex=b);break}b==d.options.length&&(d.selectedIndex=0)}}}function Pf(a,b,c){var d=a.c[b];if(d.T||!1===c)d.ra="",d.ea="",d.T=null,d.xa=!1,c||(a.B("Drive RK"+b+" unloaded",c),Jf(a,b))}
|
||||
function Lf(a,b){var c=0;b||(b=[]);a.F=b[c++]||2496;a.i=b[c++]||0;a.b=b[c++]||128;a.v=b[c++]||0;a.s=b[c++]||0;a.f=b[c++]||0;a.C=b[c]||0;for(b=0;b<a.c.length;b++){var d=a.c[b];void 0===d&&(d=a.c[b]={});c=a;d.Ra=b;d.name=c.Aa;d.Qa=d.xa=!1;d.K=203;d.P=2;d.N=12;d.W=512;d.Eb=!0;d.Kc=0;d.Ic=0;d.Mb=1;d.gc=d.N;d.Sb=d.W;d.Qc=0;d.ee=null;d.T||(d.ea="");d.status=2368}return!0}
|
||||
h.Ac=function(a,b,c,d,e,f){this.s=f&65535;this.b=this.b&-49|f>>12&48;this.v=65536-e&65535;this.f=this.f&-16|d&15;a&&(this.i=this.i|a|32768,this.b|=49152);return!0};
|
||||
h.ec=function(a,b,c,d,e,f,g,k,l){var m=0;a=a.T;var p=null,t;a||(m=128,e=0);for(;e--;){if(!p){p=a.seek(b,c,d+1);if(!p){m=4096;break}t=0}var w,v;if(0>(w=a.read(p,t++))||0>(v=a.read(p,t++))){m=32;break}if(!k&&(this.h.tb(f,w|v<<8),Rb(this.h))){m=1024;break}f+=g;if(t>=a.W&&(p=null,++d>=a.N&&(d=0,++c>=a.P&&(c=0,++b>=a.K)))){m=64;break}}return l?l(m,b,c,d,e,f):m};
|
||||
h.Cc=function(a,b,c,d,e,f,g,k,l){var m=0;a=a.T;var p=null,t;a||(m=128,e=0);for(;e--;){var w=this.h.pb(f);if(Rb(this.h)){m=1024;break}f+=g;if(!p){p=a.seek(b,c,d+1,!0);if(!p){m=4096;break}t=0}if(k){var v,X;if(0>(v=a.read(p,t++))||0>(X=a.read(p,t++))){m=32;break}if(w!=(v|X<<8)){m=1;break}}else if(!a.write(p,t++,w&255)||!a.write(p,t++,w>>8)){m=32;break}if(t>=a.W&&(p=null,++d>=a.N&&(d=0,++c>=a.P&&(c=0,++b>=a.K)))){m=64;break}}return l?l(m,b,c,d,e,f):m};h.Fd=function(){return this.F};h.Ee=function(){};
|
||||
h.Gd=function(){return this.i};h.Fe=function(){};h.Cd=function(){return this.b&61438};
|
||||
h.Be=function(a){this.b=this.b&-3968|a&3967;if(this.b&1){a=!0;var b,c=(this.f&57344)>>13,d=this.c[c],e,f,g,k,l,m;this.b&=-129;var p=(this.b&14)>>1;switch(p){case 0:this.i=0;this.b=128;this.f=0;break;case 4:e=(this.f&8160)>>5;e>=d.K&&(this.i|=32832,this.b|=49152);break;case 5:case 2:b=this.ec;case 3:case 1:b||(b=this.Cc),e=(this.f&8160)>>5,f=(this.f&16)>>4,g=this.f&15,k=65536-this.v&65535,l=(this.b&48)<<12|this.s,m=this.b&2048?0:2,e>=d.K?(this.i|=32832,this.b|=49152):g>=d.N?(this.i|=32800,this.b|=
|
||||
49152):a=b.call(this,d,e,f,g,k,l,m,3<=p,this.Ac.bind(this))}this.F=d.status|(d.T?128:0)|c<<13|this.f&15;a&&(this.b&=-2,this.b|=128,this.b&64&&L(this.a,this.Xa))}};h.Hd=function(){return this.v};h.Ge=function(a){this.v=a};h.Bd=function(){return this.s};h.Ae=function(a){this.s=a};h.Dd=function(){return this.f};h.Ce=function(a){this.f=a};h.Ed=function(){return this.C};h.De=function(a){this.C=a};
|
||||
var Rf={},Mf=(Rf[65280]=[null,null,O.prototype.Fd,O.prototype.Ee,"RKDS"],Rf[65282]=[null,null,O.prototype.Gd,O.prototype.Fe,"RKER"],Rf[65284]=[null,null,O.prototype.Cd,O.prototype.Be,"RKCS"],Rf[65286]=[null,null,O.prototype.Hd,O.prototype.Ge,"RKWC"],Rf[65288]=[null,null,O.prototype.Bd,O.prototype.Ae,"RKBA"],Rf[65290]=[null,null,O.prototype.Dd,O.prototype.Ce,"RKDA"],Rf[65294]=[null,null,O.prototype.Ed,O.prototype.De,"RKDB"],Rf);
|
||||
function N(a){y.call(this,"RL11",a,N,131072);this.A=Sf(this,a.autoMount);this.v=0;this.c=Array(4);this.C=!Ba("Mobi")&&window&&"FileReader"in window}A(N);function Sf(a,b){if(b&&"string"==typeof b)try{b=eval("("+b+")")}catch(c){x(a.type+" auto-mount error: "+c.message+" ("+b+")"),b=null}return b||{}}h=N.prototype;
|
||||
h.ba=function(a,b,c){var d=this;switch(b){case "listDisks":return this.j[b]=c,c.onchange=function(){var a=d.j.descDisk,b=c.options&&c.options[c.selectedIndex];if(a&&b){var g={};if(b=b.getAttribute("data-value"))try{g=eval("("+b+")")}catch(k){x("RL11 option error: "+k.message)}b=g.desc;void 0===b&&(b="");g=g.href;void 0!==g&&(b='<a href="'+g+'" target="_blank">'+b+"</a>");a.innerHTML=b}},!0;case "descDisk":case "listDrives":return this.j[b]=c,c.onchange=function(){var a=q(c.value);null!=a&&Tf(d,a)},
|
||||
!0;case "loadDisk":return this.j[b]=c,c.onclick=function(){var a=d.j.listDisks;a&&a.options&&Uf(d,a.options[a.selectedIndex].text,a.value)},!0;case "bootDisk":return this.j[b]=c,c.onclick=function(){var a,b=d.j.listDrives,b=b&&q(b.value);null==b||0>b||b>=d.c.length||!(a=d.c[b])?d.B("Unable to boot the selected drive"):a.T?(Fc(d.a,0,!0),(a=d.fc(a,0,0,0,512,0))&&d.B("Unable to read the boot sector ("+a+")")):d.B("Load a disk into the drive first")},!0;case "saveDisk":if(!this.C){c.parentNode.removeChild(c);
|
||||
break}this.j[b]=c;c.onclick=function(){var a=d.j.listDrives;a&&a.options&&d.c&&((a=d.c[q(a.value)||0])?(a=a.T)?(a=Ca(Gf(a),a.Wb.replace(".json",".img")),x(a)):d.B("No disk loaded in drive."):d.B("No disk drive selected."))};return!0;case "mountDisk":if(this.C)return this.j[b]=c,c.addEventListener("change",function(){var a=c.children[0];a.children[1].disabled=!a.children[0].files.length}),c.onsubmit=function(a){if(a=a.currentTarget[1].files[0]){var b=a.name;Uf(d,r(b,!0),b,a)}return!1},!0;c.parentNode.removeChild(c)}return!1};
|
||||
h.ia=function(a,b,c,d){this.l=a;this.h=b;this.a=c;this.D=d;if(a=Sf(this,tc(this.l,"autoMount")))for(var e in a)e.substr(0,2)==this.type.substr(0,2)&&(this.A[e]=a[e]);Vf(this);this.Xa=Vb(this.a,112,5,131072);fb(b,this,Wf);hb(b,this.reset.bind(this));Xf(this,"None","",!0);this.C&&Xf(this,"Local Disk","?");Xf(this,"Remote Disk","??");Yf(this)||F(this)};
|
||||
h.ka=function(a,b){if(!b){if(!a||!this.restore){if(this.reset(),this.l.Rb){for(a=0;a<this.c.length;a++)Zf(this,a,!0);Yf(this,!0)}}else if(!this.restore(a))return!1;if(a=this.j.listDrives){for(;a.firstChild;)a.removeChild(a.firstChild);a.value="";for(b=0;4>b;b++){var c=document.createElement("option");c.value=b;c.text="RL"+b;a.appendChild(c)}a.value="0";Tf(this,0)}}return!0};h.ja=function(a){return a?this.save():!0};h.reset=function(){Vf(this)};h.save=function(){return(new Q(this)).data()};
|
||||
h.restore=function(a){return Vf(this,a[0])};function Yf(a,b){b||(a.v=0);for(var c in a.A){var d=a.A[c],e=d.path||"",f;if(!(f=d.name))a:{if((f=a.j.listDisks)&&f.options)for(var g=0;g<f.options.length;g++){var k=f.options[g];if(k.value==e){f=k.text;break a}}f=r(e,!0)}if(e&&f&&(g=-1,c&&(g=c.charCodeAt(c.length-1)-48,0>g||9<g)&&(g=-1),0<=g&&g<a.c.length)){!$f(a,g,f,e,!0)&&b&&F(a,!1);continue}a.B("Incorrect auto-mount settings for drive "+c+" ("+JSON.stringify(d)+")")}return!!a.v}
|
||||
function Uf(a,b,c,d){var e=a.j.listDrives,e=e&&q(e.value);if(void 0===e||0>e||e>=a.c.length)a.B("Unable to load the selected drive");else if(c)if("?"==c)a.B('Use "Choose File" and "Mount" to select and load a local disk.');else{if("??"==c){c=window.prompt("Enter the URL of a remote disk image.","")||"";if(!c)return;b=r(c);a.status("Attempting to load "+c+' as "'+b+'"')}$f(a,e,b,c,!1,d)}else Zf(a,e)}
|
||||
function $f(a,b,c,d,e,f){var g=-1,k=a.c[b];k.ea.toLowerCase()!=d.toLowerCase()&&(g++,Zf(a,b,!0),k.Qa?a.B("RL11 busy"):(k.Qa=!0,e&&(k.Pa=!0,a.v++),k.xa=!!f,Bf(new xf(a,k,"preload"),c,d,f,a.Ec)&&g++));return g}h.Ec=function(a,b,c,d,e){a.Qa=!1;b&&(b.K>a.K||b.P>a.P)&&(this.B('Disk "'+c+'" too large for drive '+("RL"+a.Ra)),b=null);b?(a.T=b,a.ra=c,a.ea=d,this.B('Loaded disk "'+c+'" in drive '+("RL"+a.Ra),a.Pa||e),this.l&&zc(this.l)):a.xa=!1;a.Pa&&(a.Pa=!1,--this.v||F(this));Tf(this,a.Ra)};
|
||||
function Xf(a,b,c,d){if((a=a.j.listDisks)&&a.options){for(var e=0;e<a.options.length;e++)if(a.options[e].value==c)return;e=document.createElement("option");e.text=b;e.value=c;d&&a.childNodes[0]?a.insertBefore(e,a.childNodes[0]):a.appendChild(e)}}
|
||||
function Tf(a,b){if(0<=b&&b<a.c.length){var c=a.c[b],d=a.j.listDisks;a=a.j.listDrives;if(d&&a&&d.options&&a.options&&(a=q(a.value),c=c.xa?"?":c.ea,!isNaN(a)&&a==b)){for(b=0;b<d.options.length;b++)if(d.options[b].value==c){d.selectedIndex!=b&&(d.selectedIndex=b);break}b==d.options.length&&(d.selectedIndex=0)}}}function Zf(a,b,c){var d=a.c[b];if(d.T||!1===c)d.ra="",d.ea="",d.T=null,d.xa=!1,c||(a.B("Drive RL"+b+" unloaded",c),Tf(a,b))}
|
||||
function Vf(a,b){var c=0;b||(b=[]);a.b=b[c++]||129;a.w=b[c++]||0;a.f=b[c++]||0;a.i=b[c++]||0;a.s=b[c++]||0;a.o=b[c]||0;for(b=0;b<a.c.length;b++){var d=a.c[b];void 0===d&&(d=a.c[b]={});c=a;d.Ra=b;d.name=c.Aa;d.Qa=d.xa=!1;d.K=512;d.P=2;d.N=40;d.W=256;d.Eb=!0;d.Kc=0;d.Ic=0;d.Mb=1;d.gc=d.N;d.Sb=d.W;d.Qc=0;d.ee=null;d.T||(d.ea="");d.status=29}return!0}
|
||||
h.Dc=function(a,b,c,d,e,f){this.w=f&65535;this.b=this.b&-49|f>>12&48;this.o=f>>16&63;this.i=this.f=b<<7|(c?64:0)|d&63;this.s=65536-e&65535;a&&(this.b=this.b|a|32768);return!0};
|
||||
h.fc=function(a,b,c,d,e,f,g){var k=0;a=a.T;var l=null,m;a||(k=5120,e=0);for(;e--;){if(!l){l=a.seek(b,c,d+1);if(!l){k=5120;break}m=0}var p,t;if(0>(p=a.read(l,m++))||0>(t=a.read(l,m++))){k=5120;break}this.h.tb(Oc(this.a,f),p|t<<8);if(Rb(this.h)){k=8192;break}f+=2;if(m>=a.W&&(l=null,++d>=a.N&&(d=0,++c>=a.P&&(c=0,++b>=a.K)))){k=5120;break}}return g?g(k,b,c,d,e,f):k};
|
||||
h.Fc=function(a,b,c,d,e,f,g){var k=0;a=a.T;var l=null,m;a||(k=5120,e=0);for(;e--;){var p=this.h.pb(Oc(this.a,f));if(Rb(this.h)){k=8192;break}f+=2;if(!l){l=a.seek(b,c,d+1,!0);if(!l){k=5120;break}m=0}if(!a.write(l,m++,p&255)||!a.write(l,m++,p>>8)){k=5120;break}if(m>=a.W&&(l=null,++d>=a.N&&(d=0,++c>=a.P&&(c=0,++b>=a.K)))){k=5120;break}}return g?g(k,b,c,d,e,f):k};h.Kd=function(){return this.b&65535};
|
||||
h.Je=function(a){this.b=this.b&-1023|a&1022;this.o=this.o&60|(a&48)>>4;if(!(this.b&128)){a=!0;var b,c=this.c[(this.b&768)>>8],d=c.T,e,f,g;this.b&=-2;switch(this.b&14){case 4:this.s&8&&(this.b&=63);this.s=c.status|this.i&64|(d&&512==d.K?128:0);break;case 6:1==(this.f&3)&&(b=this.f&65408,c=(this.f&16)<<2,this.i=this.f&4?this.i+b:this.i-b,this.f=this.i=this.i&65408|c);break;case 8:this.s=this.i;break;case 12:b=this.fc;case 10:b||(b=this.Fc),e=this.f>>7,f=this.f&64?1:0,g=this.f&63,!d||e>=d.K||g>=d.N?
|
||||
this.b|=37888:(a=65536-this.s&65535,d=(this.o&63)<<16|this.w,a=b.call(this,c,e,f,g,a,d,this.Dc.bind(this)))}a&&(this.b|=129,this.b&64&&L(this.a,this.Xa))}};h.Id=function(){return this.w};h.He=function(a){this.w=a&65534};h.Ld=function(){return this.f};h.Ke=function(a){this.f=a};h.Md=function(){return this.s};h.Le=function(a){this.s=a};h.Jd=function(){return this.o};h.Ie=function(a){this.o=a&63;this.b=this.b&-49|(this.o&3)<<4};
|
||||
var ag={},Wf=(ag[63744]=[null,null,N.prototype.Kd,N.prototype.Je,"RLCS"],ag[63746]=[null,null,N.prototype.Id,N.prototype.He,"RLBA"],ag[63748]=[null,null,N.prototype.Ld,N.prototype.Ke,"RLDA"],ag[63750]=[null,null,N.prototype.Md,N.prototype.Le,"RLMP"],ag[63752]=[null,null,N.prototype.Jd,N.prototype.Ie,"RLBE"],ag);
|
||||
function bg(a,b,c){y.call(this,"Computer",a,bg,33554432);this.m.R=!1;cg(this,b);this.A=tc(this,"autoPower",a);this.l=0;this.L=a.busWidth||a.buswidth;this.b=dg;this.s=null;this.i=this.H=!1;this.S=tc(this,"url")||"";(Math.random()+.1).toString(36);this.c=eg(this);if(this.a=Va("CPU",this.id)){this.D=Va("Debugger",this.id);this.h=new zb({id:this.Ba+".bus",busWidth:this.L},this.a,this.D);var d,e=B(this.id);if((this.v=Va("Panel",this.id))&&this.v.nb)for(b=0;b<e.length;b++)d=e[b],d.B=this.v.B,d.V=this.v.V,
|
||||
d.nb=this.v.nb;this.V("PDPjs v1.30.6\nCopyright \u00a9 2012-2016 Jeff Parsons <Jeff@pcjs.org>\nLicense: GPL version 3 or later <http://gnu.org/licenses/gpl.html>");this.V("Portions adapted from the PDP-11/70 Emulator v1.4 by Paul Nankervis <paulnank@hotmail.com>");for(b=0;b<e.length;b++)d=e[b],d.ia&&d.ia(this,this.h,this.a,this.D);b=null;d=a.resume;void 0!==d&&(1<d.length?b=this.o=d:this.b=parseInt(d,10));var f;if(a=tc(this,"state")||(f=!0,a.state))b=this.C=a,f||(this.i=!0,this.b=dg),this.b&&(this.w=
|
||||
new Q(this,"1.30.6"),fg(this.w)?b=null:delete this.w);!b&&this.b&&(b=gg(this))&&(this.i=!0);if(b){var g=this;u(b,null,!0,function(a,b,c){c?(g.o=null,g.i=!1,g.B("Unable to load machine state from server (error "+c+(b?": "+pa(b):"")+")")):(g.s=b,g.H=!0);F(g)})}else F(this);this.j.power||(this.A=!0);!c&&this.A&&hg(this,this.qb)}else x("Unable to find CPU component")}A(bg);var dg=0;
|
||||
function cg(a,b){if(!b){var c;if("object"==typeof resources&&(c=resources.parms))try{b=eval("("+c+")")}catch(d){x(d.message+" ("+c+")")}}a.I=b}function tc(a,b,c){var d=b.toLowerCase(),d=Na[b]||Na[d];void 0===d&&a.I&&(d=a.I[b]);void 0===d&&c&&(d=c[b]);void 0===d&&"object"==typeof resources&&resources[b]&&(d=b);return d}function hg(a,b,c){for(var d=B(a.id),e=0;e<=d.length;e++){var f=e<d.length?d[e]:a;if(!Xa(f)){Xa(f,function(){hg(a,b,c)});return}}b.call(a,c)}
|
||||
function ig(a,b){var c=new Q(a,"1.30.6","validate");if(fg(c)&&jg(c)){var d=c.get("timestamp"),e=b?b.get("timestamp"):"unknown";d!=e&&(a.B("Machine state may be out-of-date\n("+d+" vs. "+e+")\nCheck your browser's local storage limits"),b||c.clear())}}h=bg.prototype;
|
||||
h.qb=function(a){void 0===a&&(a=this.b||(this.s?1:dg));if(!this.l){this.l++;var b=!1,c=!1;this.F=!1;var d=this.w||new Q(this,"1.30.6");if(-1==a)b=!0;else if(a>dg){if(fg(d,this.s)){this.f=new Q(this,"1.30.6","failsafe");fg(this.f)&&(kg(this,d),a=2,lg(this.f));this.f.set("timestamp",sa());mg(this.f);var e=this.b&&!this.i;if(1==a||va("Click OK to restore the previous PDPjs machine state, or CANCEL to reset the machine.")){if(c=jg(d)){var f=d.get("code"),g=d.get("data");f&&("ok"==f?fg(d,g):("error"==
|
||||
f&&"no machine state"!=g?(this.B("Error: "+g),"unable to verify user"==g&&(Aa("user",""),this.c=null)):this.V(f+": "+g),lg(d),fg(d)?(c=jg(d),e=!0):c=!1))}e&&ig(this,c?d:null)}else 2==a&&d.clear()}else ig(this);delete this.s;delete this.w}e=B(this.id);for(f=0;f<e.length;f++)g=e[f],g!==this&&g!=this.a&&(c=pg(this,g,d,b,c));b=[d,a,c];-1!=a?hg(this,this.hc,b):this.hc(b)}};
|
||||
function pg(a,b,c,d,e){if(!b.m.R){b.m.R=!0;if(b.ka){var f=null;e&&((f=c.get(b.id))||(f=c.get(b.id.replace(/[a-z0-9]\./i,"."))));"string"===typeof f&&(f=null);!b.ka(f,d)&&f&&(x("Unable to restore state for "+b.type),a.C&&!a.H?(c.clear(),a.b=dg,window&&window.location.reload()):a.F=!0,b.ka(null),e=!1)}if(!d&&b.jc)for(a=b.jc.split("|"),c=0;c<a.length;c++)b.status(a[c])}return e}
|
||||
h.hc=function(a){var b=a[0],c=0>a[1];a=a[2];this.U=!0;this.m.R=!0;var d=this.j.power;d&&(d.textContent="Shutdown");this.a&&(pg(this,this.a,b,c,a),this.za(),this.a.Ha());this.F&&(kg(this,b),b.clear());!c&&this.f&&(this.f.clear(),delete this.f);this.l=0};
|
||||
function kg(a,b){if(va("There may be a problem with your PDPjs machine.\n\nTo help us diagnose it, click OK to send this PDPjs machine state to http://www.pcjs.org.")){var c=a.c||"";b=b.toString();var d={app:"PDPjs",ver:"1.30.6"};d.url=a.S;d.user=c;d.type="bug";d.data=b;u("http://www.pcjs.org/api/v1/report",d,!0)}}
|
||||
function qg(a,b,c){var d,e="none";if(a.l)return null;a.l--;var f=new Q(a,"1.30.6"),g=new Q(a,"1.30.6","validate"),k=sa();g.set("timestamp",k);f.set("timestamp",k);f.set("version","1.30.6");f.set("url",window?window.location.href:null);f.set("browser",window?window.navigator.userAgent:"");a.a&&a.a.ja&&(c&&G(a.a),d=a.a.ja(b,c),"object"===typeof d&&f.set(a.a.id,d),c&&(a.a.m.R=!1,!1===d&&(e=null)));for(var k=B(a.id),l=0;l<k.length;l++){var m=k[l];m.m.R&&(m.ja&&(d=m.ja(b,c),"object"===typeof d&&f.set(m.id,
|
||||
d)),c&&(m.m.R=!1,!1===d&&(e=null)))}e&&(c?(k=d=!1,b?(a.c&&rg(a,a.c,f.toString()),mg(g)&&mg(f)||(e=null,d=k=!0)):a.b&&(d=!0,k=3==a.b),d&&f.clear(k)):e=f.toString());c&&(a.m.R=!1,b=a.j.power)&&(b.textContent="Power");a.l=0;return e}h.reset=function(){this.h&&this.h.reset&&this.h.reset();this.a&&this.a.reset&&this.a.reset();for(var a=B(this.id),b=0;b<a.length;b++){var c=a[b];c!==this&&c!==this.h&&c!==this.a&&c.reset&&c.reset()}this.za(-1)};
|
||||
h.start=function(a,b){for(var c=B(this.id),d=0;d<c.length;d++){var e=c[d];"CPU"!=e.type&&e!==this&&e.start&&e.start(a,b)}this.za(-1)};h.stop=function(a,b){for(var c=B(this.id),d=0;d<c.length;d++){var e=c[d];"CPU"!=e.type&&e!==this&&e.stop&&e.stop(a,b)}this.za(-1)};
|
||||
h.za=function(a){if(this.a){var b=this.a,c=a||0,d=b.j.speed;d&&(0>=c||30<=(b.Eb+=c))&&(d.textContent=b.m.O?b.Pa.toFixed(2)+"Mhz":"Stopped",b.Eb=0)}if(this.v&&(b=this.v,a=a||0,b.v)){c=b.a.m.O;d=!!(b.a.u&8);if(0>=a||60<=(b.s+=a)){for(var e=0;e<b.a.g.length;e++)nb(b,"R"+e,b.a.g[e]);e=dc(b.a);nb(b,"PS",e);nb(b,"NF",e&8?1:0,1);nb(b,"ZF",e&4?1:0,1);nb(b,"VF",e&2?1:0,1);nb(b,"CF",e&1?1:0,1);b.s=0}xb(b,0<a&&c&&!d?b.a.Va:b.la);ub(b,b.o);a=b.a;a=a.Ra?a.ya&16?1:2:4;yb(b,"B22",a&1);yb(b,"B18",a&2);yb(b,"B16",
|
||||
h.za=function(a){if(this.a){var b=this.a,c=a||0,d=b.j.speed;d&&(0>=c||30<=(b.Kb+=c))&&(d.textContent=b.m.O?b.Ea.toFixed(2)+"Mhz":"Stopped",b.Kb=0)}if(this.v&&(b=this.v,a=a||0,b.v)){c=b.a.m.O;d=!!(b.a.u&8);if(0>=a||60<=(b.s+=a)){for(var e=0;e<b.a.g.length;e++)nb(b,"R"+e,b.a.g[e]);e=$b(b.a);nb(b,"PS",e);nb(b,"NF",e&8?1:0,1);nb(b,"ZF",e&4?1:0,1);nb(b,"VF",e&2?1:0,1);nb(b,"CF",e&1?1:0,1);b.s=0}wb(b,0<a&&c&&!d?b.a.Wa:b.la);ub(b,b.o);a=b.a;a=a.Sa?a.ya&16?1:2:4;xb(b,"B22",a&1);xb(b,"B18",a&2);xb(b,"B16",
|
||||
a&4)}};
|
||||
h.ba=function(a,b,c){var d=this;switch(b){case "power":return this.j[b]=c,c.onclick=function(){d.l||(d.m.R?vg(d,!1,!0):mg(d,d.mb))},!0;case "reset":return this.j[b]=c,c.onclick=function(){if(d.m.R&&!d.l)if(d.b&&!d.o){var a=va("Click OK to save changes to this PDPjs machine.\n\nWARNING: If you CANCEL, all disk changes will be discarded.");vg(d,a,!0);!a&&d.C?window&&window.location.reload():(a||(d.Lb=!0),d.mb(ig),d.Lb=!1)}else d.reset(),d.a&&d.a.Ea()},!0;case "save":if(ma(ua(),"pcjs.org"))c.parentNode.removeChild(c);else return this.j[b]=
|
||||
c,c.onclick=function(){var a=jg(d,!0);if(a){var b=!!(d.b&&!d.o||d.C),c=vg(d,b);b?wg(d,a,c):d.B("Resume disabled, machine state not saved")}},!0}return!1};
|
||||
function jg(a,b){var c=a.c;c||((c=za("user"),void 0!==c)?!c&&b&&(b=null,window&&(b=window.prompt("Saving machine states on the pcjs.org server is currently unsupported.\n\nIf you're running your own server, enter your user ID below.","")),c=b)&&((c=xg(a,c))||a.B("The user ID is invalid.")):b&&a.B("Browser local storage is not available"));return c}
|
||||
function xg(a,b){a.c=null;b=u(ua()+"/api/v1/user?req=verify&user="+b);var c=b[1];if(!b[0]&&c)try{b=eval("("+c+")"),b.code&&"ok"==b.code&&(Aa("user",b.data),a.c=b.data)}catch(d){x(d.message+" ("+c+")")}return a.c}function lg(a){var b=null;a.c&&(b=ua()+"/api/v1/user?req=load&user="+a.c+"&state="+yg(a,"1.30.6"));return b}
|
||||
function wg(a,b,c){if(c){var d={req:"store"};d.user=b;d.state=yg(a,"1.30.6");d.data=c;b=u(ua()+"/api/v1/user",d);d=b[0];if(b[1]){if(d){var e=d.indexOf("\n");0<e&&(d=d.substr(0,e));d.indexOf("Error: ")||(d=d.substr(7))}d='{"code":'+b[1]+',"data":"'+d+'"}'}b=JSON.parse(d);b&&"ok"==b.code?a.B("Machine state saved to server"):c&&(c=b&&b.data||"unable to save machine state",c="error"==b.code?"Error: "+c:"Error "+b.code+": "+c,a.B(c),Aa("user",""),a.c=null)}}
|
||||
function rf(a){var b;a=B(a.id);for(var c=0;c<a.length;c++){var d=a[c];if(b)b==d&&(b=null);else if("RAM"==d.type)return d}return null}function Dc(a){if(a.lb){var b=0,c=0;window&&(b=window.scrollX,c=window.scrollY);a.lb.focus();window&&window.scrollTo(b,c)}}Ia(function(){for(var a=E(document,"pdp11-machine"),b=0;b<a.length;b++)for(var c=a[b],d=C(c),c=E(c,"pdp11","computer"),e=0;e<c.length;e++){var f=c[e],g=C(f),g=new gg(g,d,!0);D(g,f);g.A&&mg(g,g.mb)}});
|
||||
Da.show.push(function(){for(var a=E(document,"pdp11","computer"),b=0;b<a.length;b++){var c=C(a[b]);(c=Va("Computer",c.id))&&c.U&&!c.m.R&&c.mb(-1)}});Da.exit.push(function(){for(var a=E(document,"pdp11","computer"),b=0;b<a.length;b++){var c=C(a[b]);(c=Va("Computer",c.id))&&c.m.R&&vg(c,!(!c.b||c.o),!0)}});function Q(a,b,c){this.id=a.id;this.key=yg(a,b,c);this.D=a.D;qg(this,a.Xc)}function yg(a,b,c){a=a.id;if(b){var d=b.indexOf(".");0<d&&(a+=".v"+b.substr(0,d))}c&&(a+="."+c);return a}
|
||||
Q.prototype={constructor:Q,set:function(a,b){try{this[this.id][a]=b}catch(c){}},get:function(a){return this[this.id][a]||null},value:function(){return this[this.id]},data:function(){return this[this.id]},toString:function(){var a=this[this.id];return"string"==typeof a?a:JSON.stringify(a)},clear:function(a){qg(this);var b=[];try{for(var c=0,d=window.localStorage.length;c<d;c++)b.push(window.localStorage.key(c))}catch(e){}for(c=0;c<b.length;c++)if((d=b[c])&&(a||d.substr(0,this.key.length)==this.key)){try{window.localStorage.removeItem(d)}catch(e){}b.splice(c,
|
||||
1);c=0}}};function qg(a,b){a[a.id]={};b&&a.set("parms",b);a.a=!1}function rg(a){var b=!0;if(ya()){var c=JSON.stringify(a[a.id]);Aa(a.key,c)||(x("Unable to store "+c.length+" bytes in browser local storage"),b=!1)}return b}function og(a){var b=!0;try{a[a.id]=JSON.parse(a[a.id])}catch(c){x(c.message||c),b=!1}return b}function kg(a,b){return b?(a[a.id]=b,a.a=!0):a.a?!0:ya()&&(b=za(a.key))?(a[a.id]=b,a.a=!0):!1}var zg=0;
|
||||
function Ag(a,b,c,d,e,f){e("Loading "+a+"...");u(a,null,!0,function(g,k,l){l?(k||(k="unable to load "+a+" ("+l+")"),f(k,null)):Bg(k,a,b,c,d,e,f)})}
|
||||
function Bg(a,b,c,d,e,f,g){function k(a,f){if(f)g(f,null);else{c&&(Ta(c,b,a),(f=b)&&0>f.indexOf("/")&&"/"==window.location.pathname.slice(-1)&&(f=window.location.pathname+f),d?"}"==d.slice(-1)?(d=d.slice(0,-1),1<d.length&&(d+=",")):d='{state:"'+d+'",':d="{",d+='url:"'+f+'"}',"object"==typeof resources&&(f=null),a=a.replace(/(<machine[^>]*\sid=)(['"]).*?\2/,"$1$2"+c+"$2"+(d?" parms='"+d+"'":"")+(f?' url="'+f+'"':"")));e||(a=a.replace(/(<xsl:variable name="APPNAME">).*?(<\/xsl:variable>)/,"$1PDPjs$2"),
|
||||
a=a.replace(/(<xsl:variable name="APPCLASS">).*?(<\/xsl:variable>)/,"$1pdp11$2"));f=null;if("<"==a.charAt(0))try{e||(a=a.replace(/<!DOCTYPE(.|[\r\n])*]>\s*/g,"")),window.ActiveXObject||"ActiveXObject"in window?(f=new window.ActiveXObject("Microsoft.XMLDOM"),f.async=!1,f.loadXML(a)):f=(new window.DOMParser).parseFromString(a,"text/xml")}catch(p){f=null,a=p.message}else a="unrecognized XML: "+(255<a.length?a.substr(0,255)+"...":a);g(a,f)}}a?e?Cg(a,f,k):k(a,null):g("no data"+(b?" for file: "+b:""),null)}
|
||||
function Cg(a,b,c){var d;if(d=/<([a-z]+)\s+ref="(.*?)"(.*?)\/>/g.exec(a)){var e=d[2];b("Loading "+e+"...");u(e,null,!0,function(f,g,k){if(k||!g)c(a,"unable to resolve XML reference: "+d[0]+" ("+k+")");else{if(f=d[3])if(k=g.match(new RegExp("<"+d[1]+"[^>]*>"))){for(var l=k[0],m,p=/( [a-z]+=)(['"])(.*?)\2/g;m=p.exec(f);)l=0>l.indexOf(m[1])?l.replace(">",m[0]+">"):l.replace(new RegExp(m[1]+"(['\"])(.*?)\\1"),m[0]);k[0]!=l&&(g=g.replace(k[0],l))}else{c(a,"missing <"+d[1]+"> in "+e);return}g=g.replace(/<\?xml[^>]*>[\r\n]*/,
|
||||
"");a=a.replace(d[0],g);Cg(a,b,c)}})}else c(a,null)}
|
||||
function Dg(a,b,c,d){function e(a){if(void 0===k){var b=g&&E(g,"machine-warning");k=b&&b[0]||g}k&&(k.innerHTML=oa(a))}function f(a){e("Error: "+a);l&&(--zg||Ka(!0));l=!1}var g,k,l=!0;zg++;Sa[a]={};try{if(g=document.getElementById(a)){var m;if("object"==typeof resources&&(m=resources.css)){var p=document.head||document.getElementsByTagName("head")[0],t=document.createElement("style");t.type="text/css";t.styleSheet?t.styleSheet.cssText=m:t.appendChild(document.createTextNode(m));p.appendChild(t)}c||
|
||||
(c="/versions/pdpjs/1.30.6/components.xsl");m=function(d,k){k?Ag(c,null,null,!1,e,function(d,l){l?(Ta(a,c,d),e("Processing "+b+"..."),window.ActiveXObject||"ActiveXObject"in window?(l=k.transformNode(l))?(g.outerHTML=l,--zg||Ka(!0)):f("transformNodeToObject failed"):document.implementation&&document.implementation.createDocument?(d=new XSLTProcessor,d.importStylesheet(l),(l=d.transformToFragment(k,document))?g.parentNode?(g.parentNode.replaceChild(l,g),--zg||Ka(!0)):f("invalid machine element: "+
|
||||
a):f("transformToFragment failed")):f("unable to transform XML: unsupported browser")):f(d)}):f(d)};"<"!=b.charAt(0)?Ag(b,a,d,!0,e,m):Bg(b,null,a,d,!1,e,m)}else f("missing machine element: "+a)}catch(w){f(w.message)}return l}window.embedPDP11=function(a,b,c,d){Ka(!1);return Dg(a,b,c,d)};window.enableEvents=Ka;window.sendEvent=La;})();//# sourceMappingURL=/tmp/pdpjs/1.30.6/pdp11.map
|
||||
h.ba=function(a,b,c){var d=this;switch(b){case "power":return this.j[b]=c,c.onclick=function(){d.l||(d.m.R?qg(d,!1,!0):hg(d,d.qb))},!0;case "reset":return this.j[b]=c,c.onclick=function(){if(d.m.R&&!d.l)if(d.b&&!d.o){var a=va("Click OK to save changes to this PDPjs machine.\n\nWARNING: If you CANCEL, all disk changes will be discarded.");qg(d,a,!0);!a&&d.C?window&&window.location.reload():(a||(d.Rb=!0),d.qb(dg),d.Rb=!1)}else d.reset(),d.a&&d.a.Ha()},!0;case "save":if(ma(ua(),"pcjs.org"))c.parentNode.removeChild(c);else return this.j[b]=
|
||||
c,c.onclick=function(){var a=eg(d,!0);if(a){var b=!!(d.b&&!d.o||d.C),c=qg(d,b);b?rg(d,a,c):d.B("Resume disabled, machine state not saved")}},!0}return!1};
|
||||
function eg(a,b){var c=a.c;c||((c=za("user"),void 0!==c)?!c&&b&&(b=null,window&&(b=window.prompt("Saving machine states on the pcjs.org server is currently unsupported.\n\nIf you're running your own server, enter your user ID below.","")),c=b)&&((c=sg(a,c))||a.B("The user ID is invalid.")):b&&a.B("Browser local storage is not available"));return c}
|
||||
function sg(a,b){a.c=null;b=u(ua()+"/api/v1/user?req=verify&user="+b);var c=b[1];if(!b[0]&&c)try{b=eval("("+c+")"),b.code&&"ok"==b.code&&(Aa("user",b.data),a.c=b.data)}catch(d){x(d.message+" ("+c+")")}return a.c}function gg(a){var b=null;a.c&&(b=ua()+"/api/v1/user?req=load&user="+a.c+"&state="+tg(a,"1.30.6"));return b}
|
||||
function rg(a,b,c){if(c){var d={req:"store"};d.user=b;d.state=tg(a,"1.30.6");d.data=c;b=u(ua()+"/api/v1/user",d);d=b[0];if(b[1]){if(d){var e=d.indexOf("\n");0<e&&(d=d.substr(0,e));d.indexOf("Error: ")||(d=d.substr(7))}d='{"code":'+b[1]+',"data":"'+d+'"}'}b=JSON.parse(d);b&&"ok"==b.code?a.B("Machine state saved to server"):c&&(c=b&&b.data||"unable to save machine state",c="error"==b.code?"Error: "+c:"Error "+b.code+": "+c,a.B(c),Aa("user",""),a.c=null)}}
|
||||
function mf(a){var b;a=B(a.id);for(var c=0;c<a.length;c++){var d=a[c];if(b)b==d&&(b=null);else if("RAM"==d.type)return d}return null}function zc(a){if(a.nb){var b=0,c=0;window&&(b=window.scrollX,c=window.scrollY);a.nb.focus();window&&window.scrollTo(b,c)}}Ia(function(){for(var a=E(document,"pdp11-machine"),b=0;b<a.length;b++)for(var c=a[b],d=C(c),c=E(c,"pdp11","computer"),e=0;e<c.length;e++){var f=c[e],g=C(f),g=new bg(g,d,!0);D(g,f);g.A&&hg(g,g.qb)}});
|
||||
Da.show.push(function(){for(var a=E(document,"pdp11","computer"),b=0;b<a.length;b++){var c=C(a[b]);(c=Va("Computer",c.id))&&c.U&&!c.m.R&&c.qb(-1)}});Da.exit.push(function(){for(var a=E(document,"pdp11","computer"),b=0;b<a.length;b++){var c=C(a[b]);(c=Va("Computer",c.id))&&c.m.R&&qg(c,!(!c.b||c.o),!0)}});function Q(a,b,c){this.id=a.id;this.key=tg(a,b,c);this.D=a.D;lg(this,a.cd)}function tg(a,b,c){a=a.id;if(b){var d=b.indexOf(".");0<d&&(a+=".v"+b.substr(0,d))}c&&(a+="."+c);return a}
|
||||
Q.prototype={constructor:Q,set:function(a,b){try{this[this.id][a]=b}catch(c){}},get:function(a){return this[this.id][a]||null},value:function(){return this[this.id]},data:function(){return this[this.id]},toString:function(){var a=this[this.id];return"string"==typeof a?a:JSON.stringify(a)},clear:function(a){lg(this);var b=[];try{for(var c=0,d=window.localStorage.length;c<d;c++)b.push(window.localStorage.key(c))}catch(e){}for(c=0;c<b.length;c++)if((d=b[c])&&(a||d.substr(0,this.key.length)==this.key)){try{window.localStorage.removeItem(d)}catch(e){}b.splice(c,
|
||||
1);c=0}}};function lg(a,b){a[a.id]={};b&&a.set("parms",b);a.a=!1}function mg(a){var b=!0;if(xa()){var c=JSON.stringify(a[a.id]);Aa(a.key,c)||(x("Unable to store "+c.length+" bytes in browser local storage"),b=!1)}return b}function jg(a){var b=!0;try{a[a.id]=JSON.parse(a[a.id])}catch(c){x(c.message||c),b=!1}return b}function fg(a,b){return b?(a[a.id]=b,a.a=!0):a.a?!0:xa()&&(b=za(a.key))?(a[a.id]=b,a.a=!0):!1}var ug=0;
|
||||
function vg(a,b,c,d,e,f){e("Loading "+a+"...");u(a,null,!0,function(g,k,l){l?(k||(k="unable to load "+a+" ("+l+")"),f(k,null)):wg(k,a,b,c,d,e,f)})}
|
||||
function wg(a,b,c,d,e,f,g){function k(a,f){if(f)g(f,null);else{c&&(Ta(c,b,a),(f=b)&&0>f.indexOf("/")&&"/"==window.location.pathname.slice(-1)&&(f=window.location.pathname+f),d?"}"==d.slice(-1)?(d=d.slice(0,-1),1<d.length&&(d+=",")):d='{state:"'+d+'",':d="{",d+='url:"'+f+'"}',"object"==typeof resources&&(f=null),a=a.replace(/(<machine[^>]*\sid=)(['"]).*?\2/,"$1$2"+c+"$2"+(d?" parms='"+d+"'":"")+(f?' url="'+f+'"':"")));e||(a=a.replace(/(<xsl:variable name="APPNAME">).*?(<\/xsl:variable>)/,"$1PDPjs$2"),
|
||||
a=a.replace(/(<xsl:variable name="APPCLASS">).*?(<\/xsl:variable>)/,"$1pdp11$2"));f=null;if("<"==a.charAt(0))try{e||(a=a.replace(/<!DOCTYPE(.|[\r\n])*]>\s*/g,"")),window.ActiveXObject||"ActiveXObject"in window?(f=new window.ActiveXObject("Microsoft.XMLDOM"),f.async=!1,f.loadXML(a)):f=(new window.DOMParser).parseFromString(a,"text/xml")}catch(p){f=null,a=p.message}else a="unrecognized XML: "+(255<a.length?a.substr(0,255)+"...":a);g(a,f)}}a?e?xg(a,f,k):k(a,null):g("no data"+(b?" for file: "+b:""),null)}
|
||||
function xg(a,b,c){var d;if(d=/<([a-z]+)\s+ref="(.*?)"(.*?)\/>/g.exec(a)){var e=d[2];b("Loading "+e+"...");u(e,null,!0,function(f,g,k){if(k||!g)c(a,"unable to resolve XML reference: "+d[0]+" ("+k+")");else{if(f=d[3])if(k=g.match(new RegExp("<"+d[1]+"[^>]*>"))){for(var l=k[0],m,p=/( [a-z]+=)(['"])(.*?)\2/g;m=p.exec(f);)l=0>l.indexOf(m[1])?l.replace(">",m[0]+">"):l.replace(new RegExp(m[1]+"(['\"])(.*?)\\1"),m[0]);k[0]!=l&&(g=g.replace(k[0],l))}else{c(a,"missing <"+d[1]+"> in "+e);return}g=g.replace(/<\?xml[^>]*>[\r\n]*/,
|
||||
"");a=a.replace(d[0],g);xg(a,b,c)}})}else c(a,null)}
|
||||
function yg(a,b,c,d){function e(a){if(void 0===k){var b=g&&E(g,"machine-warning");k=b&&b[0]||g}k&&(k.innerHTML=oa(a))}function f(a){e("Error: "+a);l&&(--ug||Ka(!0));l=!1}var g,k,l=!0;ug++;Sa[a]={};try{if(g=document.getElementById(a)){var m;if("object"==typeof resources&&(m=resources.css)){var p=document.head||document.getElementsByTagName("head")[0],t=document.createElement("style");t.type="text/css";t.styleSheet?t.styleSheet.cssText=m:t.appendChild(document.createTextNode(m));p.appendChild(t)}c||
|
||||
(c="/versions/pdpjs/1.30.6/components.xsl");m=function(d,k){k?vg(c,null,null,!1,e,function(d,l){l?(Ta(a,c,d),e("Processing "+b+"..."),window.ActiveXObject||"ActiveXObject"in window?(l=k.transformNode(l))?(g.outerHTML=l,--ug||Ka(!0)):f("transformNodeToObject failed"):document.implementation&&document.implementation.createDocument?(d=new XSLTProcessor,d.importStylesheet(l),(l=d.transformToFragment(k,document))?g.parentNode?(g.parentNode.replaceChild(l,g),--ug||Ka(!0)):f("invalid machine element: "+
|
||||
a):f("transformToFragment failed")):f("unable to transform XML: unsupported browser")):f(d)}):f(d)};"<"!=b.charAt(0)?vg(b,a,d,!0,e,m):wg(b,null,a,d,!1,e,m)}else f("missing machine element: "+a)}catch(w){f(w.message)}return l}window.embedPDP11=function(a,b,c,d){Ka(!1);return yg(a,b,c,d)};window.enableEvents=Ka;window.sendEvent=La;})();//# sourceMappingURL=/tmp/pdpjs/1.30.6/pdp11.map
|
||||
|
|
|
|||
Loading…
Reference in a new issue