Important changes to repositories hosted on mbed.com
Mbed hosted mercurial repositories are deprecated and are due to be permanently deleted in July 2026.
To keep a copy of this software download the repository Zip archive or clone locally using Mercurial.
It is also possible to export all your personal repositories from the account settings page.
memory.h
00001 #ifndef MEMORY_HEADER 00002 #define MEMORY_HEADER 00003 00004 class Memory { 00005 00006 public: 00007 const static int MEMORY_SIZE = 32; 00008 00009 private: 00010 int memory[MEMORY_SIZE]; 00011 00012 public: 00013 Memory(); 00014 void reset(); 00015 void set(int address, int value); 00016 int get(int address); 00017 void print(); 00018 }; 00019 00020 00021 #endif
Generated on Sat Aug 6 2022 19:26:06 by
1.7.2