• R/O
  • HTTP
  • SSH
  • HTTPS

提交

标签
No Tags

Frequently used words (click to add to your profile)

javac++androidlinuxc#windowsobjective-ccocoa誰得qtpythonphprubygameguibathyscaphec計画中(planning stage)翻訳omegatframeworktwitterdomtestvb.netdirectxゲームエンジンbtronarduinopreviewer

Commit MetaInfo

修订版36a9b9d9d522d9747e0603d2d5c6c5df72f0fffa (tree)
时间2020-03-16 00:15:25
作者Yoshinori Sato <ysato@user...>
CommiterYoshinori Sato

Log Message

docs: Add RX target.

Add rx-virt target specification document.
Sort the list of targets alphabetically.

更改概述

差异

--- /dev/null
+++ b/docs/system/target-rx.rst
@@ -0,0 +1,35 @@
1+.. _RX-System-emulator:
2+
3+RX System emulator
4+--------------------
5+
6+Use the executable ``qemu-system-rx`` to simulate a Virtual RX target.
7+This target emulates the following devices.
8+
9+- R5F562N8 MCU
10+
11+ - On-chip memory (ROM 512KB, RAM 96KB)
12+ - Interrupt Control Unit (ICUa)
13+ - 8Bit Timer x 1CH (TMR0,1)
14+ - Compare Match Timer x 2CH (CMT0,1)
15+ - Serial Communication Interface x 1CH (SCI0)
16+
17+- External memory 16MByte
18+
19+Example of ``qemu-system-rx`` usage for RX is shown below:
20+
21+Download ``<u-boot_image_file>`` from
22+https://osdn.net/users/ysato/pf/qemu/dl/u-boot.bin.gz
23+
24+Start emulation of rx-virt::
25+ qemu-system-rx -bios <u-boot_image_file>
26+
27+Download ``kernel_image_file`` from
28+https://osdn.net/users/ysato/pf/qemu/dl/zImage
29+
30+Download ``device_tree_blob`` from
31+https://osdn.net/users/ysato/pf/qemu/dl/rx-virt.dtb
32+
33+Start emulation of rx-virt::
34+ qemu-system-rx -kernel <kernel_image_file> -dtb <device_tree_blob> \
35+ -append "earlycon"
--- a/docs/system/targets.rst
+++ b/docs/system/targets.rst
@@ -8,12 +8,15 @@ various targets are mentioned in the following sections.
88 Contents:
99
1010 .. toctree::
11-
12- target-i386
11+
12+ target-arm
13+ target-m68k
14+ target-mips
1315 target-ppc
16+ target-rx
1417 target-sparc
1518 target-sparc64
16- target-mips
17- target-arm
18- target-m68k
19+ target-i386
1920 target-xtensa
21+
22+.. i386 said x86. Put it at 'x'.