visual6502
visual6502 copied to clipboard
Stepping the 6500 javascript does not update image
only allowing the simulation to free run updates the image
when single stepping , the image is not updated to show the data paths
Try pasting this updated function into the javascript console (reached with Inspect or Inspect Element in the browser's context menu):
function goUntilSyncOrWrite(){
halfStep();
cycle++;
while(
!isNodeHigh(nodenames['clk0']) ||
( !isNodeHigh(nodenames['sync']) && isNodeHigh(nodenames['rw']) )
) {
halfStep();
cycle++;
}
if(animateChipLayout)
refresh();
chipStatus();
}