diff --git a/docs/index.rst b/docs/index.rst index 0fac9fa..328d2e0 100644 --- a/docs/index.rst +++ b/docs/index.rst @@ -13,6 +13,7 @@ Table of Contents :maxdepth: 2 Guide + Architecture Support API Reference Indices and Tables diff --git a/docs/languages.rst b/docs/languages.rst new file mode 100644 index 0000000..7eb030e --- /dev/null +++ b/docs/languages.rst @@ -0,0 +1,8 @@ +Architecture Support +==================== + +.. ipython:: + + In [0]: for arch in pypcode.Arch.enumerate(): + ...: for lang in arch.languages: + ...: print(f'{lang.id:32} - {lang.description}')