From c94bf805684a511e4e96d36851139e2083e4899b Mon Sep 17 00:00:00 2001 From: Asger Gitz-Johansen Date: Sun, 13 Apr 2025 19:49:36 +0200 Subject: [PATCH] fix: remove link to never-seen-before post --- content/posts/avr-memory-model.md | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/content/posts/avr-memory-model.md b/content/posts/avr-memory-model.md index 766349e..b59540d 100644 --- a/content/posts/avr-memory-model.md +++ b/content/posts/avr-memory-model.md @@ -24,10 +24,8 @@ I also assume that GNU/Linux is being used on the development computer. The [avr-gcc](http://www.nongnu.org/avr-libc/user-manual/pages.html) compiler chain is an open source effort to have C/C++ for AVR Atmel chips. They do provide some rudimentary C++ support, but there's no STL and the `new` and `delete` -keywords are not implemented by default. Even purely virtual functions doesn't work out of the box. - -**But don't fret!** There are ways to implement those features manually. See my [other]() post about getting the build -environment up and running. +keywords are not implemented by default. Even purely virtual functions doesn't work out of the box. These things can be +added manually though. ## The Memory Model