diff options
author | Sergey Belyashov <Sergey.Belyashov@gmail.com> | 2020-09-25 14:40:42 +0300 |
---|---|---|
committer | Simon Marchi <simon.marchi@polymtl.ca> | 2021-07-17 10:17:30 -0400 |
commit | 3dab9e15d3ab1cde555dfbf4a958eb17eec2ecb3 (patch) | |
tree | 42ae6677a07afc152fccddb3c32a083248cd49fa /gdb/features | |
parent | 12be796ca8a107f91b23e393fc228960ea52c6cc (diff) | |
download | gdb-3dab9e15d3ab1cde555dfbf4a958eb17eec2ecb3.zip gdb-3dab9e15d3ab1cde555dfbf4a958eb17eec2ecb3.tar.gz gdb-3dab9e15d3ab1cde555dfbf4a958eb17eec2ecb3.tar.bz2 |
Add basic Z80 CPU support
Supported ISAs:
- Z80 (all undocumented instructions)
- Z180
- eZ80 (Z80 mode only)
Datasheets:
Z80: https://www.zilog.com/manage_directlink.php?filepath=docs/z80/um0080&extn=.pdf
Z180: https://www.zilog.com/manage_directlink.php?filepath=docs/z180/ps0140&extn=.pdf
eZ80: http://www.zilog.com/force_download.php?filepath=YUhSMGNEb3ZMM2QzZHk1NmFXeHZaeTVqYjIwdlpHOWpjeTlWVFRBd056Y3VjR1Jt
To debug Z80 programs using GDB you must configure and embed
z80-stub.c to your program (SDCC compiler is required). Or
you may use some simulator with GDB support.
gdb/ChangeLog:
* Makefile.in (ALL_TARGET_OBS): Add z80-tdep.c.
* NEWS: Mention z80 support.
* configure.tgt: Handle z80*.
* features/Makefile (XMLTOC): Add z80.xml.
* features/z80-cpu.xml: New.
* features/z80.c: Generate.
* features/z80.xml: New.
* z80-tdep.c: New file.
* z80-tdep.h: New file.
gdb/stubs/ChangeLog:
* z80-stub.c: New file.
Change-Id: Id0b7a6e210c3f93c6853c5e3031b7bcee47d0db9
Diffstat (limited to 'gdb/features')
-rw-r--r-- | gdb/features/Makefile | 3 | ||||
-rw-r--r-- | gdb/features/z80-cpu.xml | 33 | ||||
-rw-r--r-- | gdb/features/z80.c | 44 | ||||
-rw-r--r-- | gdb/features/z80.xml | 12 |
4 files changed, 91 insertions, 1 deletions
diff --git a/gdb/features/Makefile b/gdb/features/Makefile index 522ad58..ded8c3b 100644 --- a/gdb/features/Makefile +++ b/gdb/features/Makefile @@ -170,7 +170,8 @@ XMLTOC = \ s390x-tevx-linux64.xml \ s390x-vx-linux64.xml \ s390-gs-linux64.xml \ - s390x-gs-linux64.xml + s390x-gs-linux64.xml \ + z80.xml TDESC_CFILES = $(patsubst %.xml,%.c,$(XMLTOC)) GDB = false diff --git a/gdb/features/z80-cpu.xml b/gdb/features/z80-cpu.xml new file mode 100644 index 0000000..98498b1 --- /dev/null +++ b/gdb/features/z80-cpu.xml @@ -0,0 +1,33 @@ +<?xml version="1.0"?> +<!-- Copyright (C) 2020 Free Software Foundation, Inc. + + Copying and distribution of this file, with or without modification, + are permitted in any medium without royalty provided the copyright + notice and this notice are preserved. --> + +<!DOCTYPE feature SYSTEM "gdb-target.dtd"> +<feature name="org.gnu.gdb.z80.cpu"> + <flags id="af_flags" size="2"> + <field name="C" start="0" end="0"/> + <field name="N" start="1" end="1"/> + <field name="P/V" start="2" end="2"/> + <field name="F3" start="3" end="3"/> + <field name="H" start="4" end="4"/> + <field name="F5" start="5" end="5"/> + <field name="Z" start="6" end="6"/> + <field name="S" start="7" end="7"/> + </flags> + <reg name="af" bitsize="16" type="af_flags"/> + <reg name="bc" bitsize="16" type="uint16"/> + <reg name="de" bitsize="16" type="data_ptr"/> + <reg name="hl" bitsize="16" type="data_ptr"/> + <reg name="sp" bitsize="16" type="data_ptr" /> + <reg name="pc" bitsize="32" type="code_ptr" /> + <reg name="ix" bitsize="16" type="data_ptr"/> + <reg name="iy" bitsize="16" type="data_ptr"/> + <reg name="af'" bitsize="16" type="af_flags"/> + <reg name="bc'" bitsize="16" type="uint16"/> + <reg name="de'" bitsize="16" type="data_ptr"/> + <reg name="hl'" bitsize="16" type="data_ptr"/> + <reg name="ir" bitsize="16" type="uint16"/> +</feature> diff --git a/gdb/features/z80.c b/gdb/features/z80.c new file mode 100644 index 0000000..944b563 --- /dev/null +++ b/gdb/features/z80.c @@ -0,0 +1,44 @@ +/* THIS FILE IS GENERATED. -*- buffer-read-only: t -*- vi:set ro: + Original: z80.xml */ + +#include "defs.h" +#include "osabi.h" +#include "target-descriptions.h" + +struct target_desc *tdesc_z80; +static void +initialize_tdesc_z80 (void) +{ + target_desc_up result = allocate_target_description (); + set_tdesc_architecture (result.get (), bfd_scan_arch ("z80")); + + struct tdesc_feature *feature; + + feature = tdesc_create_feature (result.get (), "org.gnu.gdb.z80.cpu"); + tdesc_type_with_fields *type_with_fields; + type_with_fields = tdesc_create_flags (feature, "af_flags", 2); + tdesc_add_flag (type_with_fields, 0, "C"); + tdesc_add_flag (type_with_fields, 1, "N"); + tdesc_add_flag (type_with_fields, 2, "P/V"); + tdesc_add_flag (type_with_fields, 3, "F3"); + tdesc_add_flag (type_with_fields, 4, "H"); + tdesc_add_flag (type_with_fields, 5, "F5"); + tdesc_add_flag (type_with_fields, 6, "Z"); + tdesc_add_flag (type_with_fields, 7, "S"); + + tdesc_create_reg (feature, "af", 0, 1, NULL, 16, "af_flags"); + tdesc_create_reg (feature, "bc", 1, 1, NULL, 16, "uint16"); + tdesc_create_reg (feature, "de", 2, 1, NULL, 16, "data_ptr"); + tdesc_create_reg (feature, "hl", 3, 1, NULL, 16, "data_ptr"); + tdesc_create_reg (feature, "sp", 4, 1, NULL, 16, "data_ptr"); + tdesc_create_reg (feature, "pc", 5, 1, NULL, 32, "code_ptr"); + tdesc_create_reg (feature, "ix", 6, 1, NULL, 16, "data_ptr"); + tdesc_create_reg (feature, "iy", 7, 1, NULL, 16, "data_ptr"); + tdesc_create_reg (feature, "af'", 8, 1, NULL, 16, "af_flags"); + tdesc_create_reg (feature, "bc'", 9, 1, NULL, 16, "uint16"); + tdesc_create_reg (feature, "de'", 10, 1, NULL, 16, "data_ptr"); + tdesc_create_reg (feature, "hl'", 11, 1, NULL, 16, "data_ptr"); + tdesc_create_reg (feature, "ir", 12, 1, NULL, 16, "uint16"); + + tdesc_z80 = result.release (); +} diff --git a/gdb/features/z80.xml b/gdb/features/z80.xml new file mode 100644 index 0000000..238687a --- /dev/null +++ b/gdb/features/z80.xml @@ -0,0 +1,12 @@ +<?xml version="1.0"?> +<!-- Copyright (C) 2020 Free Software Foundation, Inc. + + Copying and distribution of this file, with or without modification, + are permitted in any medium without royalty provided the copyright + notice and this notice are preserved. --> + +<!DOCTYPE target SYSTEM "gdb-target.dtd"> +<target> + <architecture>z80</architecture> + <xi:include href="z80-cpu.xml"/> +</target> |