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
|
|
@ -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