From e0b0076abc1c5251b8643b994fc1fc1e8f76a2d3 Mon Sep 17 00:00:00 2001 From: Adam Greenwood-Byrne Date: Mon, 22 Feb 2021 10:25:12 +0000 Subject: [PATCH] Fixed a typo in the write-up --- part10-multicore/README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/part10-multicore/README.md b/part10-multicore/README.md index d143dce..5342075 100644 --- a/part10-multicore/README.md +++ b/part10-multicore/README.md @@ -20,6 +20,6 @@ For now, I'll signpost the following points of interest in the code: * The new _boot.S_ loader * The new _multicore.c_ library and related _multicore.h_ header * A slimmed down _io.h_ and _kernel.c_ (DMA sound removed), with a new multicore approach to `main()` - * A revised _link.ld_ adding provisions for a secondary core's stack and the 0x00000 entry point (a result of setting `kernel_old=1` + * A revised _link.ld_ adding provisions for a secondary core's stack and the 0x00000 entry point (a result of setting `kernel_old=1`) I will write more soon to attempt to explain what's going on here.