Created
October 28, 2019 17:45
-
-
Save dheeptuck/df3aa84790f01ded33badbe7066129f8 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/* Creating a non initialized RAM section: */ | |
.noinit (NOLOAD): | |
{ | |
KEEP(*(.noinit)) /* keep my variable even if not referenced */ | |
} > RAM |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
thk