Fixed Jekyll rendering of pages with PC8080 machines
This commit is contained in:
parent
55b99c8a08
commit
31d1b5c7e5
8 changed files with 190 additions and 11 deletions
|
|
@ -14,6 +14,7 @@ The project includes these emulation modules:
|
|||
|
||||
* C1Pjs, the 6502-based C1P Emulation Module
|
||||
* [PCjs](pcjs/), the x86-based IBM PC Emulation Module
|
||||
* PC8080, an 8080 CPU Emulation Module (work-in-progress)
|
||||
|
||||
along with variety of Node support modules, such as:
|
||||
|
||||
|
|
|
|||
|
|
@ -2473,11 +2473,11 @@ if (DEBUGGER) {
|
|||
}
|
||||
|
||||
sLine += str.pad(sBytes, 11);
|
||||
sLine += str.pad(sOpcode, 8);
|
||||
sLine += str.pad(sOpcode, 7);
|
||||
if (sOperands) sLine += ' ' + sOperands;
|
||||
|
||||
if (sComment) {
|
||||
sLine = str.pad(sLine, 56) + ';' + sComment;
|
||||
sLine = str.pad(sLine, 40) + ';' + sComment;
|
||||
if (!this.cpu.flags.fChecksum) {
|
||||
sLine += (nSequence != null? '=' + nSequence.toString() : "");
|
||||
} else {
|
||||
|
|
|
|||
Loading…
Reference in a new issue