visual6502 icon indicating copy to clipboard operation
visual6502 copied to clipboard

Stepping the 6500 javascript does not update image

Open Hardcore-fs opened this issue 6 years ago • 1 comments

only allowing the simulation to free run updates the image

when single stepping , the image is not updated to show the data paths

Hardcore-fs avatar Oct 17 '19 03:10 Hardcore-fs

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();
}

BigEd avatar Dec 21 '19 13:12 BigEd