mirror of
https://github.com/trebonian/visual6502.git
synced 2025-07-16 20:24:06 +00:00
put non-breaking spaces into disassembly fragments
This commit is contained in:
@@ -328,9 +328,9 @@ function busToString(busname){
|
||||
if(busname=='State')
|
||||
return listActiveTCStates();
|
||||
if(busname=='Execute')
|
||||
return dis6502[readBits('ir',8)];
|
||||
return dis6502[readBits('ir',8)].replace(/ /,' ');
|
||||
if(busname=='Fetch')
|
||||
return isNodeHigh(nodenames['sync'])?dis6502[readDataBus()]:'';
|
||||
return isNodeHigh(nodenames['sync'])?dis6502[readDataBus()].replace(/ /,' '):'';
|
||||
if(busname=='plaOutputs')
|
||||
// PLA outputs are mostly ^op- but some have a prefix too
|
||||
// - we'll allow the x and xx prefix but ignore the #
|
||||
|
Reference in New Issue
Block a user