diff options
author | Ayke van Laethem <[email protected]> | 2019-11-29 21:35:59 +0100 |
---|---|---|
committer | Ron Evans <[email protected]> | 2019-12-07 16:47:40 +0100 |
commit | 0105f815c6349043645fcc0bbf06d00a545882be (patch) | |
tree | 837054eceab1df5f3b86c471cd429c96be84635f /targets | |
parent | d441f0152fb5943c960544cd39675bb7792b641e (diff) | |
download | tinygo-0105f815c6349043645fcc0bbf06d00a545882be.tar.gz tinygo-0105f815c6349043645fcc0bbf06d00a545882be.zip |
targets: rename qemu target to cortex-m-qemu
The target is intended to emulate the Cortex-M, not to be a generic QEMU
target.
Diffstat (limited to 'targets')
-rw-r--r-- | targets/cortex-m-qemu.json (renamed from targets/qemu.json) | 2 | ||||
-rw-r--r-- | targets/cortex-m-qemu.s (renamed from targets/qemu.s) | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/targets/qemu.json b/targets/cortex-m-qemu.json index de1a6689d..03d688a36 100644 --- a/targets/qemu.json +++ b/targets/cortex-m-qemu.json @@ -8,7 +8,7 @@ ], "linkerscript": "targets/lm3s6965.ld", "extra-files": [ - "targets/qemu.s" + "targets/cortex-m-qemu.s" ], "emulator": ["qemu-system-arm", "-machine", "lm3s6965evb", "-semihosting", "-nographic", "-kernel"] } diff --git a/targets/qemu.s b/targets/cortex-m-qemu.s index 96aaafb1d..2e2fa010d 100644 --- a/targets/qemu.s +++ b/targets/cortex-m-qemu.s @@ -1,5 +1,5 @@ // Generic Cortex-M interrupt vector. -// This vector is used by the QEMU target. +// This vector is used by the Cortex-M QEMU target. .syntax unified |