From dc4a1eb53b389ba9e3698929c6b2601909620f39 Mon Sep 17 00:00:00 2001 From: Martin Geisler Date: Tue, 27 Feb 2024 16:53:05 +0100 Subject: [PATCH] Skip translation of large bare-metal code blocks (#1853) This was done a bit inconsistently before. We now skip all of these large blocks which are meant to be used as-is by the students. This removes 700 lines from the PO files. I found this during the review of #1651. --- src/exercises/bare-metal/compass.md | 1 + src/exercises/bare-metal/rtc.md | 10 ++++++++++ 2 files changed, 11 insertions(+) diff --git a/src/exercises/bare-metal/compass.md b/src/exercises/bare-metal/compass.md index d03f4ce3714..304be3a0fef 100644 --- a/src/exercises/bare-metal/compass.md +++ b/src/exercises/bare-metal/compass.md @@ -29,6 +29,7 @@ look in the `compass` directory for the following files. _src/main.rs_: + ```rust,compile_fail {{#include compass/src/main.rs:top}} diff --git a/src/exercises/bare-metal/rtc.md b/src/exercises/bare-metal/rtc.md index f92acec8622..9a52bffc757 100644 --- a/src/exercises/bare-metal/rtc.md +++ b/src/exercises/bare-metal/rtc.md @@ -22,6 +22,7 @@ look in the `rtc` directory for the following files. _src/main.rs_: + ```rust,compile_fail {{#include rtc/src/main.rs:top}} @@ -41,6 +42,7 @@ _src/exceptions.rs_ (you should only need to change this for the 3rd part of the exercise): + ```rust,compile_fail {{#include rtc/src/exceptions.rs}} @@ -49,6 +51,7 @@ exercise): _src/logger.rs_ (you shouldn't need to change this): + ```rust,compile_fail {{#include rtc/src/logger.rs}} @@ -57,6 +60,7 @@ _src/logger.rs_ (you shouldn't need to change this): _src/pl011.rs_ (you shouldn't need to change this): + ```rust,compile_fail {{#include rtc/src/pl011.rs}} @@ -74,6 +78,7 @@ _Cargo.toml_ (you shouldn't need to change this): _build.rs_ (you shouldn't need to change this): + ```rust,compile_fail {{#include rtc/build.rs}} @@ -82,6 +87,7 @@ _build.rs_ (you shouldn't need to change this): _entry.S_ (you shouldn't need to change this): + ```armasm {{#include rtc/entry.S}} @@ -90,6 +96,7 @@ _entry.S_ (you shouldn't need to change this): _exceptions.S_ (you shouldn't need to change this): + ```armasm {{#include rtc/exceptions.S}} @@ -98,6 +105,7 @@ _exceptions.S_ (you shouldn't need to change this): _idmap.S_ (you shouldn't need to change this): + ```armasm {{#include rtc/idmap.S}} @@ -106,6 +114,7 @@ _idmap.S_ (you shouldn't need to change this): _image.ld_ (you shouldn't need to change this): + ```ld {{#include rtc/image.ld}} @@ -114,6 +123,7 @@ _image.ld_ (you shouldn't need to change this): _Makefile_ (you shouldn't need to change this): + ```makefile {{#include rtc/Makefile}}