![Epson S1C88 Series Manual Download Page 150](http://html.mh-extra.com/html/epson/s1c88-series/s1c88-series_manual_106917150.webp)
CHAPTER 13 S1C88 FAMILY DEBUGGER
138
EPSON
S5U1C88000C MANUAL II
WORKBENCH/DEV TOOLS/OLD ASSEMBLER
(2) When [Dump] window is closed
If both <address1> and <address2> are not defined, the debugger displays data for 256 words from
address 0x000000 in the [Command] window.
>dd
↵
A0 +1 +2 +3 +4 +5 +6 +7 +8 +9 +A +B +C +D +E +F Value
000000 AE 02 F0 F0 C9 02 F0 F0 F0 F0 F0 F0 F0 F0 F0 F0 ................
000010 00 A4 E0 48 0A 08 E0 80 EE 6A FC BA 3E BA 4A 01 ...H.....j..>.J.
: : :
0000F0 A6 A2 22 82 A0 0C 04 02 FE F7 BD 9E FE 7F BA FB ..".............
>
If only <address1> is defined, the debugger displays data for 256 words from <address1>.
>dd ff00
↵
A0 +1 +2 +3 +4 +5 +6 +7 +8 +9 +A +B +C +D +E +F Value
00FF00 30 00 00 FF FF FF FF FF FF FF FF FF FF FF FF FF 0...............
00FF10 00 00 1F 00 FF FF FF FF FF FF FF FF FF FF FF FF ................
: : :
00FFF0 FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF ................
>
If both <address1> and <address2> are defined, the debugger displays data from <address1> to
<address2>.
>dd ff00 ff1f
↵
A0 +1 +2 +3 +4 +5 +6 +7 +8 +9 +A +B +C +D +E +F Value
00FF00 30 00 00 FF FF FF FF FF FF FF FF FF FF FF FF FF 0...............
00FF10 00 00 1F 00 FF FF FF FF FF FF FF FF FF FF FF FF ................
>
If @<size> is defined in place of <address2>, the debugger displays the specified bytes of data from
<address1>.
>dd ff00 @20
↵
A0 +1 +2 +3 +4 +5 +6 +7 +8 +9 +A +B +C +D +E +F Value
00FF00 30 00 00 FF FF FF FF FF FF FF FF FF FF FF FF FF 0...............
00FF10 00 00 1F 00 FF FF FF FF FF FF FF FF FF FF FF FF ................
>
(3) Display format options
The display format option allows selection of a data type same as the pull-down list on the [Dump]
window. When option specification is omitted, data is displayed in byte units. The following shows
display examples in each option:
>dd -b
↵
... Byte format (default)
A0 +1 +2 +3 +4 +5 +6 +7 +8 +9 +A +B +C +D +E +F Value
000000 AE 02 F0 F0 C9 02 F0 F0 F0 F0 F0 F0 F0 F0 F0 F0 ................
: :
>dd -w
↵
... Word format
Address +0 +2 +4 +6 +8 +A +C +E Value
000000 02AE F0F0 02C9 F0F0 F0F0 F0F0 F0F0 F0F0 ................
: :
>dd -l
↵
... Long format
000000 F0F002AE F0F002C9 F0F0F0F0 F0F0F0F0 ................
: :
>dd -f
↵
... Float format
000000 AE 02 F0 F0 -5.029
000004 C9 02 F0 F0 -5.029
: :
>dd -d
↵
... Double format
000000 AE 02 F0 F0 C9 02 F0 F0 -1.018151011236
000008 F0 F0 F0 F0 F0 F0 F0 F0 -1.077308742236
: :
>