?? datapath.html
字號:
<html>
<head>
<script language="JavaScript">
function initInstructions() {
document.DataPath.initInstructions();
}
function zeroRegisters() {
document.DataPath.zeroRegisters();
}
function resetData() {
document.DataPath.resetData();
}
function resetDataPath(){
document.DataPath.resetDataPath();
}
function setInstruction(instruction, address) {
document.DataPath.setInstruction(instruction, address);
}
function setRegister(word, registerNumber) {
document.DataPath.setRegister(word, registerNumber);
}
function setData(dataItem, address) {
document.DataPath.setData(dataItem, address);
}
function returnedDataAccess(value, address, access) {
parent.returnedDataAccess(value, address, access);
}
function returnedRegisterAccess(read1, read2, write, value) {
parent.returnedRegisterAccess(read1, read2, write, value);
}
function returnedInstructionAccess(address) {
parent.returnedInstructionAccess(address);
}
function displayMessage(message) {
alert("" + message);
}
</script>
<title>DataPath</title>
</head>
<body bgcolor="#FFFFFF">
<applet name="DataPath"
code="DataPath.class"
archive="DataPath.jar, Extensions.jar"
mayscript="true"
alt="No Java Applet Support with your Browser."
width="100%" height="100%">
<PARAM name="scriptable" value="true">
</applet>
</body>
</html>
?? 快捷鍵說明
復制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -