forked from Zeal8bit/Zeal-WebEmulator
-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Romdisk: Merge index feature from upstream, fix popout position, modi…
…fied index algorithm from upstream
- Loading branch information
Showing
8 changed files
with
33 additions
and
18 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,11 +1,18 @@ | ||
/** | ||
* SPDX-FileCopyrightText: 2022 Zeal 8-bit Computer <[email protected]> | ||
* SPDX-FileCopyrightText: 2022-2023 Zeal 8-bit Computer <[email protected]> | ||
* | ||
* SPDX-License-Identifier: Apache-2.0 | ||
*/ | ||
|
||
var mousepressed = false; | ||
|
||
$("#step").on("click", () => zealcom.step()); | ||
$("#stop").on("click", () => zealcom.stop()); | ||
$("#stepover").on("click", () => zealcom.step_over()); | ||
$("#continue").on("click", () => zealcom.cont()); | ||
$("#reset").on("click", () => zealcom.reset()); | ||
$("#clean").on("click", () => zealcom.restart()); | ||
|
||
$("#dumpnow").on("click", function() { | ||
const virtaddr = parseInt($("#dumpaddr").val(), 16); | ||
const size = parseInt($("#dumpsize").val()); | ||
|
@@ -262,5 +269,3 @@ function setMemoryByteAddress(object) { | |
const val = hex(str, true, 4); | ||
$("#current_memaddr").text(val); | ||
} | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters