put non-breaking spaces into disassembly fragments

This commit is contained in:
BigEd 2010-11-26 14:27:03 +00:00
parent 611490ad76
commit e866a3b58e
1 changed files with 2 additions and 2 deletions

View File

@ -328,9 +328,9 @@ function busToString(busname){
if(busname=='State') if(busname=='State')
return listActiveTCStates(); return listActiveTCStates();
if(busname=='Execute') if(busname=='Execute')
return dis6502[readBits('ir',8)]; return dis6502[readBits('ir',8)].replace(/ /,' ');
if(busname=='Fetch') if(busname=='Fetch')
return isNodeHigh(nodenames['sync'])?dis6502[readDataBus()]:''; return isNodeHigh(nodenames['sync'])?dis6502[readDataBus()].replace(/ /,' '):'';
if(busname=='plaOutputs') if(busname=='plaOutputs')
// PLA outputs are mostly ^op- but some have a prefix too // PLA outputs are mostly ^op- but some have a prefix too
// - we'll allow the x and xx prefix but ignore the # // - we'll allow the x and xx prefix but ignore the #