Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Stepping the 6500 javascript does not update image #59

Open
Hardcore-fs opened this issue Oct 17, 2019 · 1 comment
Open

Stepping the 6500 javascript does not update image #59

Hardcore-fs opened this issue Oct 17, 2019 · 1 comment

Comments

@Hardcore-fs
Copy link

only allowing the simulation to free run updates the image

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

@BigEd
Copy link
Collaborator

BigEd commented Dec 21, 2019

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

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

2 participants