Sille Van Landschoot / Mbed 2 deprecated mbed_slave_full

Dependencies:   mbed

Embed: (wiki syntax)

« Back to documentation index

Show/hide line numbers memory.h Source File

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