You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The main windows should addititionally be able to display the data segments of the process. This is useful for debugging purposes, as it allows the user to see the contents of the data segments and how they are being used by the process.
2
+
3
+
They should be displayed in a sort of table with two columns:
4
+
5
+
1. Segment encoding mode
6
+
2. Segment content
7
+
8
+
The table should be towards the bottom of the main window.
9
+
10
+
The content should be displayed as follows:
11
+
12
+
- Encoding mode Numeric and Alphanumeric: as text (decoded)
13
+
- Encoding mode Byte: If it can be converted to a string using UTF-8, it should be displayed as text (decoded). Otherwise, it should be displayed as a hex dump.
14
+
- Encoding mode Kanji: as hex dump
15
+
- Encoding mode ECI: display the ECI number
16
+
- Other encoding modes: as hex dump
17
+
18
+
The list of data segments is accessible via the DebugAccess object.
0 commit comments