aboutsummaryrefslogtreecommitdiffstats
path: root/ethereal/assets/debugger
diff options
context:
space:
mode:
authorobscuren <geffobscura@gmail.com>2014-05-28 19:00:45 +0800
committerobscuren <geffobscura@gmail.com>2014-05-28 19:00:45 +0800
commit09728bf43ce5eaed3060d0ce8aae323055aa6cba (patch)
tree994fb1c96d6c158ab6226ad7625ab314f9397cf2 /ethereal/assets/debugger
parent969b4a4a36c2f465de3ab980d13ec513ec6db780 (diff)
downloaddexon-09728bf43ce5eaed3060d0ce8aae323055aa6cba.tar.gz
dexon-09728bf43ce5eaed3060d0ce8aae323055aa6cba.tar.zst
dexon-09728bf43ce5eaed3060d0ce8aae323055aa6cba.zip
Debugger script&data now accept "0x" values
Diffstat (limited to 'ethereal/assets/debugger')
-rw-r--r--ethereal/assets/debugger/debugger.qml6
1 files changed, 5 insertions, 1 deletions
diff --git a/ethereal/assets/debugger/debugger.qml b/ethereal/assets/debugger/debugger.qml
index 7c3ffbceb..40b0b68b1 100644
--- a/ethereal/assets/debugger/debugger.qml
+++ b/ethereal/assets/debugger/debugger.qml
@@ -14,6 +14,9 @@ ApplicationWindow {
width: 1290
height: 900
+ property alias codeText: codeEditor.text
+ property alias dataText: rawDataField.text
+
MenuBar {
Menu {
title: "Debugger"
@@ -167,6 +170,7 @@ ApplicationWindow {
}
}
}
+
toolBar: ToolBar {
RowLayout {
spacing: 5
@@ -205,7 +209,7 @@ ApplicationWindow {
function setInstruction(num) {
asmTableView.selection.clear()
- asmTableView.selection.select(num-1)
+ asmTableView.selection.select(num)
}
function setMem(mem) {